In Linux, I can change the creation date of a file using touch:
touch -a -m -t 201512180130.09 file.txt
In Python, I can use the touch command to change the creation date, but I don't see any arguments to set it to a different date than the current one.
from pathlib import Path
Path('path/to/file.txt').touch()
How can I set the date in Python?