Path类

作者:追风剑情 发布于:2016-1-5 18:13 分类:C#

此类用于处理文件路径

  1. using System;
  2. using System.IO;
  3.  
  4. namespace PathTest
  5. {
  6. class Program
  7. {
  8. static void Main(string[] args)
  9. {
  10. string s;
  11. Console.WriteLine("Path类的使用");
  12.  
  13. string path1 = @"D:\path1";
  14. string path2 = @"path2";
  15. string file = @"test.txt";
  16. string filePath = @"D:\path\test.txt";
  17.  
  18. Console.WriteLine("path1={0}", path1);
  19. Console.WriteLine("path2={0}", path2);
  20. Console.WriteLine("file={0}", file);
  21. Console.WriteLine("filePath={0}", filePath);
  22. Console.WriteLine();
  23.  
  24. //更改扩展名
  25. s = Path.ChangeExtension(filePath, "bin");
  26. Console.WriteLine("ChangeExtension={0}", s);
  27.  
  28. //合并路径
  29. s = Path.Combine(path1, path2);
  30. Console.WriteLine("Combine={0}", s);
  31.  
  32. //获取目录名
  33. s = Path.GetDirectoryName(filePath);
  34. Console.WriteLine("GetDirectoryName={0}", s);
  35.  
  36. //获取扩展名
  37. s = Path.GetExtension(filePath);
  38. Console.WriteLine("GetExtension={0}", s);
  39.  
  40. //获取文件名
  41. s = Path.GetFileName(filePath);
  42. Console.WriteLine("GetFileName={0}", s);
  43.  
  44. //获取不带扩展名的文件名
  45. s = Path.GetFileNameWithoutExtension(filePath);
  46. Console.WriteLine("GetFileNameWithoutExtension={0}", s);
  47.  
  48. //获取路径的完全限定名
  49. s = Path.GetFullPath(path2);
  50. Console.WriteLine("GetFullPath={0}", s);
  51.  
  52. //获取根目录
  53. s = Path.GetPathRoot(filePath);
  54. Console.WriteLine("GetPathRoot={0}", s);
  55.  
  56. //返回随机文件名
  57. s = Path.GetRandomFileName();
  58. Console.WriteLine("GetRandomFileName={0}", s);
  59.  
  60. //随机创建临时文件名
  61. s = Path.GetTempFileName();
  62. Console.WriteLine("GetTempFileName={0}", s);
  63.  
  64. //返回当前系统临时文件夹路径
  65. s = Path.GetTempPath();
  66. Console.WriteLine("GetTempPath={0}", s);
  67.  
  68. //路径是否包含文件扩展名
  69. bool b = Path.HasExtension(filePath);
  70. Console.WriteLine("HasExtension={0}", b);
  71.  
  72. //判断是否为绝对路径
  73. b = Path.IsPathRooted(filePath);
  74. Console.WriteLine("IsPathRooted={0}", b);
  75.  
  76. //获取不允许在文件名中使用的字符数组
  77. char[] chars = Path.GetInvalidFileNameChars();
  78.  
  79. //获取不允许在路径中使用的字符数组
  80. chars = Path.GetInvalidPathChars();
  81.  
  82. Console.Read();
  83. }
  84. }
  85. }

运行效果

path.png

 

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号