You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Moves or renames the filesystem object oldPath to newPath.
529
+
/// Moves or renames the file oldPath to newPath.
529
530
/// In order to get consistent behavior across Windows and Linux across all 4 combinations of oldPath and newPath being a directory/file,
530
531
/// the newPath isn't allowed to already exist.
531
532
/// </summary>
532
533
/// <param name="oldPath">Path to the filesystem object. All paths are made absolute by adding current working directory to the specified path.</param>
533
534
/// <param name="newPath">Path to the filesystem object. All paths are made absolute by adding current working directory to the specified path.</param>
534
535
/// <returns>Whether or not renaming succeeded.</returns>
/// Moves or renames the directory oldPath to newPath.
540
+
/// In order to get consistent behavior across Windows and Linux across all 4 combinations of oldPath and newPath being a directory/file,
541
+
/// the newPath isn't allowed to already exist.
542
+
/// </summary>
543
+
/// <param name="oldPath">Path to the filesystem object. All paths are made absolute by adding current working directory to the specified path.</param>
544
+
/// <param name="newPath">Path to the filesystem object. All paths are made absolute by adding current working directory to the specified path.</param>
545
+
/// <returns>Whether or not renaming succeeded.</returns>
0 commit comments