List to File
Write list items to the file.
Last updated
Write list items to the file.
Last updated
Write the list of values into the specified file.
Input: List String Variable
The list of values is to be written.
Mode:
CreateAndWrite
- Creates the user-specified file if it doesn't exist. If it exists, an error is thrown.
CreateOrReplace
- Creates a new file if the user-specified file doesn't exist. If it exists, it is replaced.
CreateOrAppend
- Creates a new file if the user-specified file doesn't exist. If it exists, the specified input data is appended to the given file (Only for text files, throws error for other file types).
File Encoding :
The file encoding to be written.
Filename: The full path of the filename is to be written.