标签:
string strFilePaht="文件路径"; Path.GetFileNameWithoutExtension(strFilePath);这个就是获取文件名的 还有的就是用Substring截取 strFilePaht.Substring(path.LastIndexOf("\\") + 1, path.Length - 1 - path.LastIndexOf("\\")); strFilePaht.Substring(path.LastIndexOf("."), path.Length - path.LastIndexOf(".")); 或者用openFileDialog1.SafeFileName
标签:
原文地址:http://www.cnblogs.com/wangchuang/p/4523877.html