Move file

Element that moves a file

Properties
- Source*: [String] Path to a source file (c:\folder\file1.txt)
- Destination*: [String] Path to a destination file (c:\folder\file2.txt)
- Rewrite: [Boolean] Sign of destination file rewriting
C#
System.IO.File.Move(@"C:\from", @"C:\to");
Python
System.IO.File.Move("C:\\from", "C:\\to")
JavaScript
_lib.System.IO.File.Move("C:\\from", "C:\\to");
Last updated