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

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

回答:

Path.GetExtension

string myFilePath = @"C:\MyFile.txt";

string ext = Path.GetExtension(myFilePath);

// ext would be ".txt"

以上是 如何在C#中找到文件的扩展名? 的全部内容, 来源链接: utcz.com/qa/401357.html

回到顶部