繁体   English   中英

C#相当于Python的os.path.exists()?

[英]C#'s equivalent to Python's os.path.exists()?

我可以使用os.path.exists()来检查文件是否存在。 C#中的等效功能是什么?

当然你的意思是.NET,而不是C#:)

试试System.IO.File.Exists

System.IO.FileSystem.IO.Directory都有Exists

bool dirExists = System.IO.Directory.Exists(@"C:\directory\");
bool fileExists = System.IO.File.Exists(@"C:\directory\file.txt");

还有额外的好处:请注意,对于跨平台兼容性,您应该使用例如System.IO.Path.Combine("c:", "directory", "file.txt"); 这将使用System.IO.Path.DirectorySeparatorChar自动加入目录的各个部分。 当然只有Windows有C:,所以你需要知道什么作为驱动器的根。

System.IO.File.Exists(@"c:\path\to\your\file.ext");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM