Copy file

Element copying 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] Overwriting sign of a destination file

C#
System.IO.File.Copy(@"C:\from", @"C:\to");

Python
System.IO.File.Copy("C:\\from", "C:\\to")

JavaScript
_lib.System.IO.File.Copy("C:\\from", "C:\\to");

Last updated