SOLVED
Delete source files
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
DennyChan
8 - Asteroid
‎08-11-2015
11:33 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Hello
I have a process that Schedules files, through Alteryx, the files will need to be worked on once, is there a way to move / kill the source file once the process has completed
IE
a file come into a folder (input file)
Alteryx does its thing
output the file, in another folder
then delete the input file
many thanks
Denny
Solved! Go to Solution.
Labels:
- Labels:
- Dynamic Processing
- Scheduler
1 REPLY 1
tom_montpool
12 - Quasar
‎08-12-2015
01:56 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
Depending on what you're doing, I can think of a few ways to delete files once you're finished with them.
- Save the files to %Engine.TempFilePath% or %temp% -- see the help topic %temp% -- once your process is finished, the temp folders are automagically deleted
- Create a batch file that runs a command prompt/powershell delete on the list of input files and execute the batch file as an event or with the Run Command tool
- Similar to above, but put all the files to be deleted in a separate subfolder and delete the folder instead of the individual files.
