取得指定路径中的文件名、目录与扩展名,代码:
复制代码 代码示例:
string path = "C:dir1dir2foo.txt";
string str = "GetFullPath:" + Path.GetFullPath(path) + "rn";
str += "GetDirectoryName:" + Path.GetDirectoryName(path) + "rn";
str += "GetFileName:" + Path.GetFileName(path) + "rn";
str += "GetFileNameWithoutExtension:" + Path.GetFileNameWithoutExtension(path) + "rn";
str += "GetExtension:" + Path.GetExtension(path) + "rn";
str += "GetPathRoot:" + Path.GetPathRoot(path) + "rn";
MessageBox.Show(str);
输出结果:
复制代码 代码示例:
GetFullPath:C:dir1dir2foo.txt
GetDirectoryName:C:dir1dir2
GetFileName:foo.txt
GetFileNameWithoutExtension:foo
GetExtension:.txt
GetPathRoot:C:
说明:
path 是如何C# 轻松获取路径中文件名、目录、扩展名等判断目录和文件名的:它把最后一个 后面的内容当作是文件名。
C:dir1dir2foo.txt 文件名是 foo.txt,目录名是 C:dir1dir2。
C:dir1dir2 文件名是零长度字符串,目录名是 C:dir1dir2。
C:dir1dir2 文件名是 dir2,目录名是 C:dir1。
C# 轻松获取路径中文件名、目录、扩展名等