gpt4 book ai didi

c# - 检查文件/目录是否存在 : is there a better way?

转载 作者:IT王子 更新时间:2023-10-29 03:57:13 25 4
gpt4 key购买 nike

我发现自己经常这样做只是为了确保文件名未被使用。有没有更好的办法?

Directory.Exists(name) || File.Exists(name)

最佳答案

当然 :)

internal static bool FileOrDirectoryExists(string name)
{
return (Directory.Exists(name) || File.Exists(name));
}

关于c# - 检查文件/目录是否存在 : is there a better way?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2570930/

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