summaryrefslogtreecommitdiff
path: root/Editor/FileSystem/FileWatcher.h
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-10-30 11:32:16 +0800
committerchai <chaifix@163.com>2021-10-30 11:32:16 +0800
commit42ec7286b2d36a9ba22925f816a17cb1cc2aa5ce (patch)
tree24bc7009457a8d7500f264e89946dc20d069294f /Editor/FileSystem/FileWatcher.h
parent164885fd98d48703bd771f802d79557b7db97431 (diff)
+ Penlight
Diffstat (limited to 'Editor/FileSystem/FileWatcher.h')
-rw-r--r--Editor/FileSystem/FileWatcher.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/Editor/FileSystem/FileWatcher.h b/Editor/FileSystem/FileWatcher.h
new file mode 100644
index 0000000..528fbe5
--- /dev/null
+++ b/Editor/FileSystem/FileWatcher.h
@@ -0,0 +1,16 @@
+#pragma once
+
+#include <string>
+#include "Runtime/Threading/Thread.h"
+
+// 检查某个指定文件夹中的文件或子文件夹是否被变动过。
+class FileWatcher : public Thread
+{
+public:
+
+
+private:
+ std::string m_WorkingDirectory;
+
+
+}; \ No newline at end of file