Hi All,
I've created a simple batch script which will delete a specific type of files from inside a source directory.
Myscript.bat
========================================
@Echo OFF
DEL /s "C:\Users\Rano\Desktop\Demo\*.txt"
How can I run this script using Alteryx?
My use case: I wanted to search specific files using Alteryx and delete them.
Please help.