【C#】Path类常用方法
原创
©著作权归作者所有:来自51CTO博客作者深漂小码哥的原创作品,请联系作者获取转载授权,否则将追究法律责任
常用方法
- GetFileName() 获取文件名
- GetFileNameWithoutExtension () 获取文件扩展名
- GetExtension() 获取扩展名
- GetFullPath() 获取全路径
- Combine() 拼接路径
示例代码
using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
static void Main(string[] args)
{
string pathStr = @"c:\abc.jpg";
// 获取文件名
Console.WriteLine(Path.GetFileName(pathStr));
// 获取文件扩展名
Console.WriteLine(Path.GetFileNameWithoutExtension(pathStr));
// 获取扩展名
Console.WriteLine(Path.GetExtension(pathStr));
// 获得全路径
Console.WriteLine(Path.GetFullPath(pathStr));
// 拼接路径
Console.WriteLine(Path.Combine(@"c:\" + "123.png"));
}
}
}