I have a python script which take in 1 input and process to output. However, when i use batch file to call it like following, it failed to process...
cd \
cd ABC
cd input
for %%f in (*.txt) do (
echo "%%~nf"
"C:\Python32\python.exe" "D:\ABC\deployment code\add_null.py" "%%~nf.txt" "%%~nf_processed.txt"
)
Anyone know the problem?