如何使用 C# 知道计算机中正在打开哪个文件
我想知道我们正在打开的文件名。 例如:
如果我们打开 notepad.exe,那么我的程序应该显示 notepad.exe 已打开。
如果我们打开song.mp3,那么我的程序应该显示song.mp3已打开。
如果我们要打开 movie.mpeg,那么我的程序必须告诉 movie.mpeg 已打开。
如果我们要打开 abc.txt 那么我的程序必须告诉 abc.txt 已打开。
在这里我想知道我的计算机上打开了哪些文件。
请帮帮我。
谢谢
I want to know the file name which we are opening.
For example:
If we are opening notepad.exe then my program should display that notepad.exe got opened.
If we are opening song.mp3 then my program should display that song.mp3 got open.
If we are opening movie.mpeg then my program must tell that movie.mpeg got open.
If we are opening abc.txt then my program must tell that abc.txt got open.
Here I want to know what files are getting open on my computer.
Please help me out.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
列出所有打开的文件是相当困难的。看一下 列出已用文件 解决方案href="http://www.codeproject.com" rel="nofollow">代码项目。它列出了当前打开的所有文件。
It's quite difficult to list out all files opened. Take a look at the Listing Used Files solution on Code Project. It lists all the files which are currently open.