C# 获取上传文件的文件名和后缀名

2年前 (2022) 程序员胖胖胖虎阿
238 0 0
1             //获得要上传的文件 
2             HttpPostedFile file = Request.Files[0];
3             //获得到文件名
4             string fileName = System.IO.Path.GetFileName(file.FileName.ToString());
5             //获得文件扩展名
6             string fileNameEx = System.IO.Path.GetExtension(fileName);
7             //没有扩展名的文件名
8             string fileNameWithoutExtension = System.IO.Path.GetFileNameWithoutExtension(fileName);

文件和图片是一个道理 通过判断其扩展名来进行处理

版权声明:程序员胖胖胖虎阿 发表于 2022年9月9日 下午9:24。
转载请注明:C# 获取上传文件的文件名和后缀名 | 胖虎的工具箱-编程导航

相关文章

暂无评论

暂无评论...