Name | POP3it_File_Export |
---|
Description | This function will export a file from a container to a specified path. POP3it Pro will use the name of the file in the container unless you specify a name with the “SaveAs” parameter.
|
---|
Return Type | Text |
---|
Format | POP3it_File_Export ( Container ; Path ; SaveAs ) |
---|
Required Parameters | Container The Container that contains the File you are Exporting.
PathThe Path to the Folder where you want the Exported File.
|
---|
Optional Parameters | - SaveAs
The File Name you want the Exported File to have.
|
---|
Examples | - Example 1
Exports the file in the "Container" field to "c:\exports\" on Windows. POP3it_File_Export( Container ; "c:\\exports\\" )
- Example 2
Exports the file in the "Container" field to "/exports/" on Mac. POP3it_File_Export( Container ; "/exports/" )
- Example 3
Exports the file in the "Container" field to "c:\exports\newexport.txt" on Windows. POP3it_File_Export( Container ; "c:\\exports\\" ; "newexport.txt" )
- Example 4
Exports the file in the "Container" field to "/exports/newexport.txt" on Mac. POP3it_File_Export( Container ; "/exports/" ; "newexport.txt" )
|
---|