在 filerenamed 事件中获取旧文件名
我正在使用 C Sharp.Net fileSystemWatcher 类来观察文件是否重命名。代码工作正常,并在文件重命名时发出通知,但我无法找到重命名文件的旧名称。我正在使用“e.OldFullPath”,但它不起作用。 我收到错误:不包含 oldFullPath 的定义
我的代码:
private void watcher_FileRenamed(object sender, System.IO.FileSystemEventArgs e)
{
Console.WriteLine("File " + e.OldFullPath + " [Changed to] " + e.FullPath);
}
请帮助我。 谢谢。
I am using C Sharp.Net fileSystemWatcher class to watch if file renamed. Code is working fine and giving notification if file renamed but I am unable to find out old name of renamed file. I am using 'e.OldFullPath' but it's not working.
I am getting error: does not contain definition for oldFullPath
My code:
private void watcher_FileRenamed(object sender, System.IO.FileSystemEventArgs e)
{
Console.WriteLine("File " + e.OldFullPath + " [Changed to] " + e.FullPath);
}
Please help me.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是因为您没有更改目录,而只是更改名称。
因此,尝试使用
e.OldName
作为旧名称,使用e.Name
作为新名称,看看会发生什么。e.OldFullPath
用于其他操作,例如复制或移动。Problem is because you're not changing directory, but just name.
So try to use
e.OldName
for old name ande.Name
for new name and see what happens.e.OldFullPath
is used for other operations like copying or moving.