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?
As said by Tudor you can use os.stat() and os.utime().