date_created 幸存文件上传?
有没有办法构建一个文件上传系统来保留正在上传的文件的创建日期?
我有兴趣获取录音的创建日期或修改日期,以便将它们与 jpeg 的 EXIF 时间(在上传过程中确实存在)相匹配。
如果无法使用 html 上传表单,那么基于 Flash 或 Java 小程序的上传器是否可以实现此目的?
Is there any way to build a file upload system to preserve the date_created of the file being uploaded?
I'm interested in getting the date_created or date_modified of audio recordings in order to match them up with jpegs' EXIF times (which do survive the upload process).
If it's not possible with an html upload form, might a Flash or Java applet-based uploader work for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你绝对不能用 JavaScript 来做到这一点。
您可以使用 Flash 来实现:
如果您有签名的小程序,您可以在 Java 中获取最后修改日期(Java 没有提供对创建日期的访问,这是操作系统级别的事情)
http://download.oracle.com/javase/1.4.2/docs/api/java/io/File.html#lastModified()
You definately cant do this with JavaScript.
You can do it with Flash:
If you have a signed applet, you can get the last modified date in Java (Java doesnt provide access to the creation date, this is an OS level thing)
http://download.oracle.com/javase/1.4.2/docs/api/java/io/File.html#lastModified()