Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Syntax

$cs.File_RenameFile(string source, string dest, bool overwrite = true)

Parameters

source

Source file to rename

...

overwrite existing file if exists

Example

Code Block
languagepowershell
$cs.File_RenameFile("C:\Temp\dummy.txt","C:\Temp\moredummy.txt",$true)

...