mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-28 10:02:14 +00:00
FIX: Move files when can not copy attributes (e.g. move files from NTFS to EXT3 file system under Linux)
This commit is contained in:
parent
e0b01a38e4
commit
a98983666a
1 changed files with 4 additions and 2 deletions
|
|
@ -790,8 +790,10 @@ begin
|
|||
end;
|
||||
end;
|
||||
|
||||
// copy file attributes
|
||||
Result := mbFileCopyAttr(SourceFile.FullPath, TargetFileName, FDropReadOnlyAttribute);
|
||||
// Copy file attributes
|
||||
// TODO: May be is better to show error dialog when can not copy
|
||||
// attributes, with buttons like: Ignore, Ignore All, Cancel
|
||||
mbFileCopyAttr(SourceFile.FullPath, TargetFileName, FDropReadOnlyAttribute);
|
||||
|
||||
except
|
||||
on EFCreateError do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue