///
/// 判断目标是文件夹还是目录(目录包括磁盘)
///
/// 文件名
///
public static bool IsDir(string filepath)
{
FileInfo fi = new FileInfo(filepath);
if ((fi.Attributes & FileAttributes.Directory) != 0)
return true;
else
{
return false;
}
}