Documentation
Applications
Last updated on 11. 5. 2020 by Mark Fric
Call external script task
Was this article helpful? The article was useful The article was not useful
Přejít k obsahu | Přejít k hlavnímu menu | Přejít k vyhledávání
Documentation
Last updated on 11. 5. 2020 by Mark Fric
Was this article helpful? The article was useful The article was not useful
Would be great to see an example, including the text of the batch file itself.
Here is a simple one that deletes all files in a parent’s child directories.
@echo off
setlocal
set “BATCH_DIR=%~dp0“
for /d %%D in (“%BATCH_DIR%*”) do (
del /q “%%D\*.*”
)
endlocal
Is it only windows batch scripts that can be called, or can one also call UNIX shell scripts, or other programming language scripts, like python files?