C# 从文件路径中获取文件名/获取扩展名/获取没有扩展名的文件名

 
  

  1. string fullPath = @"C:\\Documents\\2345好压诊断信息.txt";
  2.     //获取文件名 : "2345好压诊断信息.txt"
  3. string filename = System.IO.Path.GetFileName(fullPath);
  4.     //获取扩展名 :".txt"
  5. string extension = System.IO.Path.GetExtension(fullPath);
  6.     //获取没有扩展名的文件名 : "2345好压诊断信息"
  7. string fileNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(fullPath);
 
  
 
  

你可能感兴趣的:(C#小技术,C#)