In C#, how can I know the file type from a byte[]?

后端 未结 10 1262
不思量自难忘°
不思量自难忘° 2020-11-28 08:28

I have a byte array filled from a file uploaded. But, in another part of the code, I need to know this file type uploaded from the byte[] so I can render the correct content

10条回答
  •  猫巷女王i
    2020-11-28 09:18

    You can't know it from the byte stream, but you can store the MIME type when you initially populate the byte[].

提交回复
热议问题