将 zip 文件时间戳转换为人类可读格式
对于 zip 文件中的文件,如何将文件的上次修改日期和时间转换为人类可读的格式?
How can the file last modification date and time, for files in a zip file, be converted to a human readable format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我明白了!
zip 文件时间戳的格式与 FAT 时间戳相同。 了解如何转换它
您可以在 wikipedia或其他 stackoverflow 问题中 :
Unix 时间戳转 FAT 时间戳
I've got it!
The zip file timestamp in the same format as the FAT timestamp. You can find out how to convert it at wikipedia
Or at other stackoverflow question:
Unix timestamp to FAT timestamp