batch file - Delete CVS folder from all subfolder in windows - Stack Overflow
Usually you should use cvs export to get a clean copy of the course without the working copy folders.
But you can use a for loop to remove those folders as well:
for /r /d %%f in (*) do if "%%f"=="CSV" rd /s /q "%%f"Read full article from batch file - Delete CVS folder from all subfolder in windows - Stack Overflow
No comments:
Post a Comment