C#_路径字符串中提取所在目录、文件名、文件扩展名、根目录_c#截取字符串路径的目录-CSDN博客

`

  1. str = "获取文件所在的目录:" + Path.GetDirectoryName(filePath);
  2. str = "获取文件的名称含有后缀:" + Path.GetFileName(filePath);
  3. str = "获取文件的名称没有后缀:" + Path.GetFileNameWithoutExtension(filePath);
  4. str = "获取路径的后缀扩展名称:" + Path.GetExtension(filePath);
  5. str = "获取路径的根目录:" + Path.GetPathRoot(filePath);

`


原网址: 访问
创建于: 2024-06-06 15:52:04
目录: default
标签: 无

请先后发表评论
  • 最新评论
  • 总共0条评论