I would like to have FileSystem overwrite the file if it already exists vs writing a new file with _1 appended. Is there an option that would make this happen easily?
Hi Josh,
What action do you use? File_Copy, File_Move, one of the File_Writes?
I am using File_WriteBinary. It was my mistake though, the file is being overwritten as expected. I just had a bug where I update the metadata table which stores the network path and file info so I thought it wasn't.
Sorry about that, and thanks!
No problem, I'm glad you found the bug :).
Hi Josh Herron,
Prior copying the file, you can add logic to verify if the file exists, if so delete the file.
Hope that it helps you