List to File

Write list items to the file.

Write the list of values into the specified file.

Input

  • 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.

Output

  • Filename: The full path of the filename is to be written.

Last updated