c++文件监控之FileSystemWatcher
具体代码如下:
#using <System.dll> #include <iostream> using namespace std; using namespace System; using namespace System::IO; using namespace System::Security::Permissions; public ref class Watcher { private: // Define the event handlers. static void OnChanged( Object^ /*source*/, FileSystemEventArgs^ e ) { // Specify what is done when a file is changed, created, or deleted. Console::WriteLine( "File: {0} {1}", e->FullPath, e->ChangeType ); } static void OnRenamed( Object^ /*source*/, RenamedEventArgs^ e ) { // Specify what is done when a file is renamed. Console::WriteLine( "File: {0} renamed to {1}", e->OldFullPath, e->FullPath ); } public: [PermissionSet(SecurityAction::Demand, Name="FullTrust")] int static run() { //array<String^>^args = System::Environment::GetCommandLineArgs(); //创建一个FileSystemWatcher并设置它的属性. FileSystemWatcher^ fsWatcher = gcnew FileSystemWatcher( ); fsWatcher->Path = "C:\\files"; /* Watch for changes in LastAccess and LastWrite times, and the renaming of files or directories. */ fsWatcher->NotifyFilter = static_cast<NotifyFilters>(//监听文件的以下属性 按需求添加 这里我添加了一些常用的 NotifyFilters::LastAccess | //文件或文件夹上一次打开的日期。 NotifyFilters::LastWrite | //上一次向文件或文件夹写入内容的日期 NotifyFilters::FileName | //文件名 NotifyFilters::DirectoryName | //目录名 NotifyFilters::Size); //大小 //监听子目录 fsWatcher->IncludeSubdirectories = true; // Only watch text files. //fsWatcher->Filter = "*.txt"; // Add event handlers. fsWatcher->Changed += gcnew FileSystemEventHandler( Watcher::OnChanged ); fsWatcher->Created += gcnew FileSystemEventHandler( Watcher::OnChanged ); fsWatcher->Deleted += gcnew FileSystemEventHandler( Watcher::OnChanged ); fsWatcher->Renamed += gcnew RenamedEventHandler( Watcher::OnRenamed ); // Begin watching. fsWatcher->EnableRaisingEvents = true; // Wait for the user to quit the program. Console::WriteLine( "Press \'q\' to quit the sample." ); while ( Console::Read() != 'q' ); return 0; } }; int main() { Watcher::run(); }
过程 1.首先创建FileSystemWatcher 对象 用来设置一些属性以及添加监听事件
2.设置监听目录
3.设置监听文件的属性
4.设置监听子目录
5.添加监听事件
6.开始监听
上面的sample代码可以在MSDN上找到,如果有不确定的地方,可以查看文档
上一篇:C++中rapidjson组装map和数组array的代码示例
栏 目:C语言
下一篇:利用rapidjson实现解析嵌套的json的方法示例
本文标题:c++文件监控之FileSystemWatcher
本文地址:https://www.xiuzhanwang.com/a1/Cyuyan/361.html
您可能感兴趣的文章
- 04-02c语言没有round函数 round c语言
- 01-10深入理解C++中常见的关键字含义
- 01-10使用C++实现全排列算法的方法详解
- 01-10fatal error LNK1104: 无法打开文件“libc.lib”的解决方法
- 01-10c++中inline的用法分析
- 01-10用C++实现DBSCAN聚类算法
- 01-10全排列算法的非递归实现与递归实现的方法(C++)
- 01-10C++大数模板(推荐)
- 01-10浅谈C/C++中的static与extern关键字的使用详解
- 01-10深入C/C++浮点数在内存中的存储方式详解
阅读排行
本栏相关
- 04-02c语言函数调用后清空内存 c语言调用
- 04-02func函数+在C语言 func函数在c语言中
- 04-02c语言的正则匹配函数 c语言正则表达
- 04-02c语言用函数写分段 用c语言表示分段
- 04-02c语言中对数函数的表达式 c语言中对
- 04-02c语言编写函数冒泡排序 c语言冒泡排
- 04-02c语言没有round函数 round c语言
- 04-02c语言分段函数怎么求 用c语言求分段
- 04-02C语言中怎么打出三角函数 c语言中怎
- 04-02c语言调用函数求fibo C语言调用函数求
随机阅读
- 01-10delphi制作wav文件的方法
- 01-11Mac OSX 打开原生自带读写NTFS功能(图文
- 01-10C#中split用法实例总结
- 01-10使用C语言求解扑克牌的顺子及n个骰子
- 08-05织梦dedecms什么时候用栏目交叉功能?
- 01-11ajax实现页面的局部加载
- 01-10SublimeText编译C开发环境设置
- 08-05DEDE织梦data目录下的sessions文件夹有什
- 04-02jquery与jsp,用jquery
- 08-05dedecms(织梦)副栏目数量限制代码修改