]> git.treefish.org Git - photosort.git/commitdiff
only keep mod time of file
authorAlexander Schmidt <alex@treefish.org>
Fri, 16 Oct 2020 12:01:15 +0000 (14:01 +0200)
committerAlexander Schmidt <alex@treefish.org>
Fri, 16 Oct 2020 12:01:15 +0000 (14:01 +0200)
src/misc.py

index 7ef46f36ffd5313ed1451c1add276e2024c7f7b6..e02b8179d58e79ef90938914c9d630557b0ccb2e 100644 (file)
@@ -25,7 +25,9 @@ def find_file(dir_path, file_name, file_size, exclude_dir):
 
 def import_file(src_file_path, dst_file_path, move=False):
     shutil.copyfile(src_file_path, dst_file_path)
-    shutil.copystat(src_file_path, dst_file_path)
+    src_stat = os.stat(src_file_path)
+    dst_stat = os.stat(dst_file_path)
+    os.utime( dst_file_path, ns=(dst_stat.st_atime_ns, src_stat.st_mtime_ns) )
 
 def delete_dir_contents(dir_path):
     for file_name in os.listdir(dir_path):