c++파일 모니터링 의 FileSystem Watcher

구체 적 인 코드 는 다음 과 같다.

#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.먼저 FileSystem Watcher 대상 만 들 기 일부 속성 설정 및 감청 이벤트 추가
2.감청 디 렉 터 리 설정
3.감청 파일 의 속성 설정
4.감청 서브 디 렉 터 리 설정
5.감청 이벤트 추가
6.감청 시작
위의 sample 코드 는 MSDN 에서 찾 을 수 있 으 며,불확실 한 곳 이 있 으 면 볼 수 있다문서..

좋은 웹페이지 즐겨찾기