blob: 4626c0a878c8be7353f3580ecf7a78787470a997 (
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;
};
|