在 filerenamed 事件中获取旧文件名

发布于 2024-12-11 04:09:11 字数 372 浏览 0 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜光 2024-12-18 04:09:11

问题是因为您没有更改目录,而只是更改名称。
因此,尝试使用 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 and e.Name for new name and see what happens.

e.OldFullPath is used for other operations like copying or moving.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文