如何检测项目文件夹中是否存在文件?
我的项目文件夹中有一组图像。
如何检测我的项目文件夹中是否存在图像?我正在使用c#。谢谢。
I am having a collection of images in my project folder.
how to detect if a image exist in my project folder? I am using c#. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在问题评论后编辑了我的答案:
我复制了代码并更改了退出函数,这应该可以工作
当您的应用程序部署时,这确实可以工作
EDITED MY ANSWER AFTER THE COMMENT OF THE QUESTION:
I copied the code and changed the exits function, this should work
This will indeed work when your app is deployed
这个问题有点不清楚,但我的印象是你在追求
exe安装的路径?
这将为您提供一个图像文件夹,该文件夹将位于安装 exe 的位置。
在开发环境中,您必须在应用程序路径中的 debug 和release 下创建一个图像目录,因为这是 VS 放置 exe 的位置。
The question is a little unclear but I get the impression that you're after
the path the exe has been installed in?
This will give you an image folder that will be wherever the exe is installed.
In the dev environment, you'll have to create an images dir under debug and release in the app path because that's where VS puts the exe's.
使用
File.Exists(Path Here)
如果您使用临时路径,请使用Path.GetTempPath()
编辑:抱歉,答案与上面相同!
Use
File.Exists(Path Here)
If your using a temp path usePath.GetTempPath()
EDIT: Sorry, same answer as above!
您可以用来
获取文件夹中的文件列表,然后迭代它们,直到找到您要查找的内容(或找不到),
或者您可以尝试在 try catch 块中打开文件,如果出现异常,则意味着该文件不存在。
you could use
to get a list of the files in the folder and then iterate through them until you find what your looking for (or not)
or you could try to open the file in a try catch block and if you get an exception it means the file does not exist.