.Net 视频学习第2季 C#面向对象
面向对象 Path类 File类
Path类,命名空间IO,静态类
Path.GetFileName(str),返回文件路径中的文件名,返回值为string
Path.GetFileNameWithoutExtension(str),返回文件路径中的文件名,不带扩展名,返回值为string
Path.GetExtension(str),返回文件路径中的文件的扩展名,返回值为string
Path.GetDirectoryName(str),返回文件所在的全目录,返回值为string
Path.GetFullPath(str),返回文件的全路径,返回值为string
Path.Combine(str1,str2),将两路径连接在一起,返回值为string