当前位置: 编程技术>.net/c#/asp.net
C# 获取路径中,文件名、目录、扩展名的代码
来源: 互联网 发布时间:2014-08-30
本文导语: 取得指定路径中的文件名、目录与扩展名,代码: 代码示例: string path = "C:\dir1\dir2\foo.txt"; string str = "GetFullPath:" + Path.GetFullPath(path) + "rn"; str += "GetDirectoryName:" + Path.GetDirectoryName(path) + "rn"; str += "GetFileName:" + Path.GetFileName...
取得指定路径中的文件名、目录与扩展名,代码:
代码示例:
string path = "C:\dir1\dir2\foo.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);
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:
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# 轻松获取路径中文件名、目录、扩展名等