在我的Web应用程序(asp.net,c#)中,我正在页面中上传视频文件,但是我只想上传flv视频。上传其他扩展视频时如何限制?
Path.GetExtension
string myFilePath = @"C:\MyFile.txt"; string ext = Path.GetExtension(myFilePath); // ext would be ".txt"