欢迎来到天天文库
浏览记录
ID:14467390
大小:45.50 KB
页数:13页
时间:2018-07-28
《获取文件名和类型的方法》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、获取文件名和类型的方法usingSystem;usingSystem.Collections.Generic;usingSystem.Text;namespace星空个性化助手{classUtil{/*-----------------------------------------------------*文件夹路径的格式为*C:ProgramFilesCommon*最后是不加号的-----------------------------------------------------*/////////////<
2、paramname="fileAllName">带文件名和后缀的全路径///返回文件路径///返回不带反缀名的文件名///返回带.的后缀名internalstaticvoidGetFile(stringfileAllName,outstringfilePath,outstringfileName,outstringfileType)//得到全部{filePath=fi
3、leAllName.Substring(0,fileAllName.LastIndexOf('\'))+"\";//在私有变量里存储源文件路径fileName=fileAllName.Substring(fileAllName.LastIndexOf('\')+1,fileAllName.LastIndexOf('.')-fileAllName.LastIndexOf('\')-1);//在私有变量里存储源文件名fileType=fileAllName.Substring(fileAllName.LastIndexOf('.'));//在私有变量里存储
4、源文件类型}////////////带文件名和后缀的全路径///返回不带反缀名的文件名internalstaticvoidGetName(stringfileAllName,outstringfileName)//得到文件名{fileName=fileAllName.Substring(fileAllName.LastIndexOf('\')+1,fileAllName.LastIndexOf('
5、.')-fileAllName.LastIndexOf('\')-1);//在私有变量里存储源文件名}////////////带文件名和后缀的全路径///internalstaticstringGetName(stringfileAllName)//得到文件名{returnfileAllName.Substring(fileAllName.LastIndexOf('\')+1,fileAllName.LastInde
6、xOf('.')-fileAllName.LastIndexOf('\')-1);//在私有变量里存储源文件名}////////////带文件名和后缀的全路径///返回带.的后缀名internalstaticvoidGetType(stringfileAllName,outstringfileType)//得到文件类型{fileType=fileAllName.Substring(fileAllN
7、ame.LastIndexOf('.'));//在私有变量里存储源文件类型}////////////带文件名和后缀的全路径///internalstaticstringGetType(stringfileAllName)//得到文件类型{returnfileAllName.Substring(fileAllName.LastIndexOf('.'));//在私有变量里存储源文件类型}/////////<
8、/summary>///
此文档下载收益归作者所有