-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Closed
Labels
Milestone
Description
Description
See
runtime/src/libraries/System.Private.CoreLib/src/System/IO/FileSystem.Unix.cs
Lines 373 to 376 in 4809039
| public static void MoveDirectory(string sourceFullPath, string destFullPath) | |
| { | |
| // Windows doesn't care if you try and copy a file via "MoveDirectory"... | |
| if (FileExists(sourceFullPath)) |
There are two places where the FileSystem.MoveDirectory helper is used and in both places there is already the same check.
(The comment for Windows in the code is also weird.)