aboutsummaryrefslogtreecommitdiff
path: root/CPP/Windows/FileFind.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /CPP/Windows/FileFind.h
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'CPP/Windows/FileFind.h')
-rw-r--r--CPP/Windows/FileFind.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/CPP/Windows/FileFind.h b/CPP/Windows/FileFind.h
index fcfe02c..11408d0 100644
--- a/CPP/Windows/FileFind.h
+++ b/CPP/Windows/FileFind.h
@@ -1,7 +1,7 @@
1// Windows/FileFind.h 1// Windows/FileFind.h
2 2
3#ifndef __WINDOWS_FILE_FIND_H 3#ifndef ZIP7_INC_WINDOWS_FILE_FIND_H
4#define __WINDOWS_FILE_FIND_H 4#define ZIP7_INC_WINDOWS_FILE_FIND_H
5 5
6#ifndef _WIN32 6#ifndef _WIN32
7#include <sys/stat.h> 7#include <sys/stat.h>
@@ -249,7 +249,15 @@ class CFindChangeNotification MY_UNCOPYABLE
249 HANDLE _handle; 249 HANDLE _handle;
250public: 250public:
251 operator HANDLE () { return _handle; } 251 operator HANDLE () { return _handle; }
252 bool IsHandleAllocated() const { return _handle != INVALID_HANDLE_VALUE && _handle != 0; } 252 bool IsHandleAllocated() const
253 {
254 /* at least on win2000/XP (undocumented):
255 if pathName is "" or NULL,
256 FindFirstChangeNotification() could return NULL.
257 So we check for INVALID_HANDLE_VALUE and NULL.
258 */
259 return _handle != INVALID_HANDLE_VALUE && _handle != NULL;
260 }
253 CFindChangeNotification(): _handle(INVALID_HANDLE_VALUE) {} 261 CFindChangeNotification(): _handle(INVALID_HANDLE_VALUE) {}
254 ~CFindChangeNotification() { Close(); } 262 ~CFindChangeNotification() { Close(); }
255 bool Close() throw(); 263 bool Close() throw();