diff options
author | rbuj <[email protected]> | 2019-08-10 15:02:12 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2022-07-20 21:40:41 +0200 |
commit | 38d1e55da484c6eb47bf1a4dbd1952e46910a3a6 (patch) | |
tree | e88f6000bc6ae4bc09c55172382a58dc37c8d1f1 /libcaja-private | |
parent | 30b2337b7a6e8f2a897ef641e92e3f1d063d521e (diff) | |
download | caja-38d1e55da484c6eb47bf1a4dbd1952e46910a3a6.tar.bz2 caja-38d1e55da484c6eb47bf1a4dbd1952e46910a3a6.tar.xz |
Copy file and keep timestamps of original file including remotes
The timestamps are reset to the current time, even if the source &
target folders support these GFileInfo attributes.
Closes #1226
Diffstat (limited to 'libcaja-private')
-rw-r--r-- | libcaja-private/caja-file-operations.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libcaja-private/caja-file-operations.c b/libcaja-private/caja-file-operations.c index 97052e91..1f1afd35 100644 --- a/libcaja-private/caja-file-operations.c +++ b/libcaja-private/caja-file-operations.c @@ -3718,7 +3718,7 @@ copy_move_directory (CopyMoveJob *copy_job, if (create_dest) { flags = (readonly_source_fs) ? G_FILE_COPY_NOFOLLOW_SYMLINKS | G_FILE_COPY_TARGET_DEFAULT_PERMS - : G_FILE_COPY_NOFOLLOW_SYMLINKS; + : G_FILE_COPY_NOFOLLOW_SYMLINKS | G_FILE_COPY_ALL_METADATA; /* Ignore errors here. Failure to copy metadata is not a hard error */ g_file_copy_attributes (src, *dest, flags, @@ -4274,6 +4274,13 @@ copy_move_file (CopyMoveJob *copy_job, } if (res) { + if (!copy_job->is_move) { + /* Ignore errors here. Failure to copy metadata is not a hard error */ + g_file_copy_attributes (src, dest, + flags | G_FILE_COPY_ALL_METADATA, + job->cancellable, NULL); + } + transfer_info->num_files ++; report_copy_progress (copy_job, source_info, transfer_info); |