给大家介绍几个.NET中Path类的几个方法:1. Path.combine(string, string) 根据给出的两个路径, 返回一个路径. 例如: string CompletePath = System.IO.Path.Combine(@”c:\MyApp”, @”Images\skyline.jpg”); 将会返回一个全路径 c:\MyApp\Images\skyline.jpg 第一个参数中有无”\”结尾都可以.2. Path.GetExtension(string) 返回给定文件路径的扩展名.例如: string FileE