小编典典

如何在C#中找到文件的扩展名?

c#

在我的Web应用程序(asp.net,c#)中,我正在页面中上传视频文件,但是我只想上传flv视频。上传其他扩展视频时如何限制?


阅读 402

收藏
2020-05-19

共1个答案

小编典典

Path.GetExtension

string myFilePath = @"C:\MyFile.txt";
string ext = Path.GetExtension(myFilePath);
// ext would be ".txt"
2020-05-19