blob: ff21e5eaf18c79f7ad9156c545412bb01aa9046b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#pragma once
#include <string>
#include "Runtime/Threading/Thread.h"
// 检查某个指定文件夹中的文件或子文件夹是否被变动过。
class FileWatcher : public Thread
{
public:
private:
std::string m_WorkingDirectory;
};
|