Changeset 97395 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
- Timestamp:
- Nov 4, 2022 11:17:21 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageGuestCtrl.cpp
r97349 r97395 1750 1750 if (fRecursive && fIsDir) /* Only available for directories. Just ignore otherwise. */ 1751 1751 strCopyFlags += "Recursive,"; 1752 if (fIsDir)1753 strCopyFlags += "CopyIntoExisting,"; /* Implicit. */1754 1752 if (fFollow) 1755 1753 strCopyFlags += "FollowLinks,"; 1756 if (fUpdate && !fIsDir) /* Only affects files. */1754 if (fUpdate) /* Only copy source files which are newer than the destination file. */ 1757 1755 strCopyFlags += "Update,"; 1758 if (fNoReplace && !fIsDir) /* Ditto. */1756 if (fNoReplace) /* Do not overwrite files. */ 1759 1757 strCopyFlags += "NoReplace,"; 1758 else if (!fNoReplace && fIsDir) 1759 strCopyFlags += "CopyIntoExisting,"; /* Only copy into existing directories if "--no-replace" isn't specified. */ 1760 1760 aCopyFlags.push_back(Bstr(strCopyFlags).raw()); 1761 1761 }
Note:
See TracChangeset
for help on using the changeset viewer.