我正在使用C ++ / CLI中的FileSystemWatcher。我在移动或复制非空文件夹时遇到问题:将包含一个.txt文件的文件夹复制到观看文件夹时,会引发多个created
和changed
个事件,这很好,但是当我移动相同的文件夹时,只会引发一个文件夹的单个创建事件。问题是,我需要知道巫文件在其中,所以我的想法是在changed
事件中创建一个循环,以递归方式搜索文件夹。这适用于移动,但是当我复制文件夹时,每个事件都会被引发两次。
我找不到算法,因此只会针对文件夹和文件发生一个create
事件。
感谢您的帮助。
代码:
System::Void SnowDrive::Cloud::FileWatcher_Changed(System::Object^ sender, System::IO::FileSystemEventArgs^ e)
{
size_l FileSize;
string ServerInode,
FileName = c.marshal_as<std::string> (e -> Name),
FilePath = c.marshal_as<std::string> (e -> FullPath),
FtpPath = ToFtpPath (FilePath.substr (0, FilePath.find_last_of ("\\")));
if (FileName.find_last_of ("\\") != string::npos)
FileName = FileName.substr (FileName.find_last_of ("\\") + 1);
for (unsigned int i = 0; i < IgnoreFileList.size (); i++)
{
if (IgnoreFileList[i] == FilePath)
{
IgnoreFileList.erase (IgnoreFileList.begin () + i);
return;
}
}
if (!FileSystem::IsDir (FilePath))
{
FileSystem::FileSize (FilePath, &FileSize);
if (FileSize != 0)
IgnoreFileList.push_back (FilePath); // ignore twice changed events
// do something
}
else
{
if (sender -> ToString () != " ")
return;
DIR * Dir;
dirent * FindData;
if((Dir = opendir(FilePath.c_str ())) == NULL)
return;
while ((FindData = readdir(Dir)) != NULL)
{
FileName = FindData -> d_name;
if (FileName == string (".") || FileName == string (".."))
continue;
FileWatcher_Changed (gcnew String (" "), gcnew IO::FileSystemEventArgs (IO::WatcherChangeTypes::Created, gcnew String (FilePath.c_str ()), gcnew String (FileName.c_str ())));
}
}
}
System::Void SnowDrive::Cloud::FileWatcher_Created(System::Object^ sender, System::IO::FileSystemEventArgs^ e)
{
size_l FileSize;
string FilePath = c.marshal_as<std::string> (e -> FullPath);
if (!FileSystem::IsDir (FilePath))
{
FileSystem::FileSize (FilePath, &FileSize);
if (FileSize != 0)
IgnoreFileList.push_back (FilePath); // ignore twice changed events
}
FileWatcher_Changed (gcnew String (" "), e);
}
答案 0 :(得分:0)
我不知道如何只获得一个Changed
事件。但是,我知道如何为移动的文件获取事件。您需要附加到Renamed
事件。
带文件的文件夹副本:文件夹的一个Changed
事件,每个文件一个。
文件夹移动文件:文件夹一个Changed
事件,每个文件一个Renamed
个事件。