New
#1
Batch file to include all subdirectories. Help
Trying to get batch file to include all subdirectories.
echo **Have double apostrophe (" ") for file path that includes spaces**
echo.
echo.
SET /p B=Enter the folder location (Then press ENTER):
rem cd "%B%"
pause
for %%v in (%B%*.afd) DO (
cmd /C ""C:\Program Files\AutoForm\AFplus\R8F\bin\AFCopy.exe" -check -jn "%%v""
)
pause