如何在 Python 中重命名文件并保留创建日期
我知道创建日期并不存储在文件系统本身中,但我遇到了这样的问题:当我使用 os.rename 时,它会更新我正在使用的文件的创建日期。
是否可以重命名文件而不更改其原始创建日期?
I know that the creation date isn't stored in the filesystem itself, but I'm encountering the problem that when I use os.rename
, it's updating the creation date of the files I'm working with.
Is it possible to rename a file without changing its original creation date?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 Tudor 所说,您可以使用 os.stat() 和 os.utime()。
As said by Tudor you can use os.stat() and os.utime().
您可以在修改时间戳之前使用
os.stat()
,将其保存在 som 变量中,重命名文件,然后使用
os.utime()
You can read the timestamp before modifying it with
os.stat()
, keep it in som variable, rename the file, then change newfile's timestamp to the held value withos.utime()