查找下载文件的文件扩展名 (AIR)
我正在尝试使用 Flickr API 下载 Flickr 视频。以下网址下载 3685555296_mobile.mp4
http://www.flickr.com/photos/schill/3685555296/play/mobile/3ae21a2693/
现在我正在使用 URLLoader (二进制数据格式)下载和写入视频到磁盘。有没有办法在将视频写入磁盘之前找到视频的扩展名?我需要它来构建视频文件的自定义名称。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据我在此线程中读到的内容。文件类型信息在 MIME 标头的“Content-Disposition”部分中发送。
所以我想通过使用 contentType 属性rel="nofollow">URLRequest 类 您应该能够确定传入文件的文件类型。
From what I read in this thread. The file type info is sent in the "Content-Disposition" section of the MIME header.
So I figure by using the
contentType
property of the URLRequest class you should be able to determine the file-type of the incoming file.