cpython/Tools/scripts/copytime.py

27 lines
663 B
Python
Raw Normal View History

#! /usr/bin/env python3
1991-12-18 13:38:27 +00:00
# Copy one file's atime and mtime to another
import sys
1992-03-30 11:15:26 +00:00
import os
1991-12-18 13:38:27 +00:00
from stat import ST_ATIME, ST_MTIME # Really constants 7 and 8
def main():
2008-05-16 15:23:30 +00:00
if len(sys.argv) != 3:
2001-01-17 08:48:39 +00:00
sys.stderr.write('usage: copytime source destination\n')
sys.exit(2)
file1, file2 = sys.argv[1], sys.argv[2]
try:
stat1 = os.stat(file1)
except OSError:
2001-01-17 08:48:39 +00:00
sys.stderr.write(file1 + ': cannot stat\n')
sys.exit(1)
try:
os.utime(file2, (stat1[ST_ATIME], stat1[ST_MTIME]))
except OSError:
2001-01-17 08:48:39 +00:00
sys.stderr.write(file2 + ': cannot change time\n')
sys.exit(2)
1991-12-18 13:38:27 +00:00
if __name__ == '__main__':
main()