检查路径是文件还是目录的更好方法?

我正在处理目录和文件的TreeView 。 用户可以选择一个文件或一个目录,然后用它做一些事情。 这要求我有一种方法可以根据用户的选择执行不同的操作。

目前我正在做这样的事情来确定路径是文件还是目录:

bool bIsFile = false;
bool bIsDirectory = false;

try
{
    string[] subfolders = Directory.GetDirectories(strFilePath);

    bIsDirectory = true;
    bIsFile = false;
}
catch(System.IO.IOException)
{
    bIsFolder = false;
    bIsFile = true;
}

我不禁感到有更好的方式来做到这一点! 我希望找到一个标准的.NET方法来处理这个问题,但是我一直无法做到。 这种方法是否存在,如果不存在,确定路径是文件还是目录的最直接方法是什么?


从如何判断路径是文件还是目录:

// 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");

.NET 4.0+更新

根据下面的注释,如果您使用的是.NET 4.0或更高版本(并且最高性能不重要),则可以使用更简洁的方式编写代码:

// get the file attributes for file or directory
FileAttributes attr = File.GetAttributes(@"c:Temp");

if (attr.HasFlag(FileAttributes.Directory))
    MessageBox.Show("Its a directory");
else
    MessageBox.Show("Its a file");

如何使用这些?

File.Exists();
Directory.Exists();

只有这条线你可以得到如果一个路径是一个目录或文件:

File.GetAttributes(data.Path).HasFlag(FileAttributes.Directory)
链接地址: http://www.djcxy.com/p/22915.html

上一篇: Better way to check if a Path is a File or a Directory?

下一篇: Select all unique combinations of a single list, with no repeats, using LINQ