Name | POP3it_File_Copy |
---|
Description | You can use this function to copy a file to a new location.
|
---|
Return Type | Text |
---|
Format | POP3it_File_Copy ( Source ; Destination ) |
---|
Required Parameters | Source The Path and File Name of the File you want to Copy.
DestinationThe Path to the Folder where you want the Copy. (You can optionally specify a File Name to Rename the File.)
|
---|
Examples | - Example 1
Copies the file "copy.txt" from the "source" folder to the "destination" folder on Mac. POP3it_File_Copy( "/source/copy.txt" ; "/destination/" )
- Example 2
Copies the file "copy.txt" from the "source" folder to the "destination" folder on Windows. POP3it_File_Copy( "c:\source\copy.txt" ; "c:\destination" )
- Example 3
Copies the file "copy.txt" from the "source" folder to the "destination" folder and renames the file "copied.txt" on Windows. POP3it_File_Copy( "c:\source\copy.txt" ; "c:\destination\copied.txt" )
- Example 4
Copies the file "copy.txt" from the "source" folder to the "destination" folder and renames the file "copied.txt" on Mac. POP3it_File_Copy( "/source/copy.txt" ; "/destination/copied.txt" )
|
---|