📜  c# 检查目录是否存在 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:08.751000             🧑  作者: Mango

代码示例2
// get the file attributes for file or directory
FileAttributes attr = File.GetAttributes(@"c:\Temp");

//detect whether its a directory or file
if ((attr & FileAttributes.Directory) == FileAttributes.Directory)
    MessageBox.Show("Its a directory");
else
    MessageBox.Show("Its a file");