发布:2023/2/10 23:35:03作者:管理员 来源:本站 浏览次数:580
Path.GetFileName
string s1 = Path.GetFileName("D:\\dir\\readme.txt"); // readme.text
string s2 = Path.GetFileName("D:\\dir\\readme."); // readme.
string s3 = Path.GetFileName("D:\\dir\\readme"); // readme
string s4 = Path.GetFileName("D:\\dir\\readme\\"); // 零长度字符串
string s5 = Path.GetFileName("D:\\"); // 零长度字符串
string s6 = Path.GetFileName("D:"); // 零长度字符串
说明:路径中的 \ 和 / 是一样的结果。
只要不是以 \ 或 / 结束,都是当作文件对待(盘符除外)。
Path.GetExtension
string s1 = Path.GetExtension("D:\\dir\\readme.txt"); // .txt
string s2 = Path.GetExtension("D:\\dir\\readme."); // 零长度字符串
string s3 = Path.GetExtension("D:\\dir\\readme"); // 零长度字符串
string s4 = Path.GetExtension("D:\\dir\\readme\\"); // 零长度字符串
string s5 = Path.GetExtension("D:\\"); // 零长度字符串
string s6 = Path.GetExtension("D:"); // 零长度字符串
Path.GetDirectoryName
string s1 = Path.GetDirectoryName("D:\\dir/readme.txt"); // D:\dir
string s2 = Path.GetDirectoryName("D:\\dir/readme."); // D:\dir
string s3 = Path.GetDirectoryName("D:\\dir/readme"); // D:\dir
string s4 = Path.GetDirectoryName("D:\\dir/readme/"); // D:\dir\readme
string s5 = Path.GetDirectoryName("D:\\"); // null,注意是 null
string s6 = Path.GetDirectoryName("D:"); // null,注意是 null
故意在路径中使用“/”,可以发现最终还是会转换成“\”。
Path.GetFileNameWithoutExtension
返回没有".txt",“.jpg”
Path.Combine
string filePath = @"D:\temp";
string fileName = "result.txt";
string newPath = Path.Combine(filePath , fileName); // newPath = "D:\temp\result.txt";
Path.GetFullPath
主要用于相对路径补全
string picInfo= @"./Debug/default.jpg"
string fileFullPath = Path.GetFullPath(picInfo);
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4