gpt4 book ai didi

c# - 如何检测项目文件夹中是否存在文件?

转载 作者:行者123 更新时间:2023-11-30 13:42:18 25 4
gpt4 key购买 nike

我的项目文件夹中有一组图像。

如何检测项目文件夹中是否存在图像?我正在使用 C#。谢谢。

最佳答案

if (System.IO.File.Exists("pathtofile"))
//it exist
else
//it does not exist

在对问题发表评论后编辑了我的答案:

我复制了代码并更改了退出函数,这应该可以工作

string type = Path.GetExtension(filepath); 
string path = @"image/" + type + ".png";
//if(System.IO.File.Exists(path)) I forgot to use the full path
if (System.IO.File.Exists(Path.Combine(Directory.GetCurrentDirectory(), path)))
{ return path; }
else
{ return @"image/other.png"; }

这确实会在您的应用部署时起作用

关于c# - 如何检测项目文件夹中是否存在文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3446915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com