How do you check a file type when there is no extension in c#

后端 未结 2 1214
星月不相逢
星月不相逢 2020-12-11 09:58

How do you check a file type when there is no extension in c#

For instance, I have files with no extension, that are either .mp4 or .flv format (just no extension).

2条回答
  •  不思量自难忘°
    2020-12-11 10:56

    I've heard of reading the first few bytes of a file's contents and making an educated guess at the file's format. This link seems promising:

    Using .NET, how can you find the mime type of a file based on the file signature not the extension

提交回复
热议问题