blob: 528fbe52692c0280bde5883462d7248b03b1407d (
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;
};
|