added files and folders

This commit is contained in:
2023-03-05 21:08:50 -06:00
parent 68e1aeeb19
commit bd986b58f0
124 changed files with 2510 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
pushd "%~dp0"
rem Move and rename files and folders
rem Delete files and folders
for /F "tokens=*" %%A in (Files.txt) do del /f /s /q %%A
for /F "tokens=*" %%A in (Folders.txt) do rmdir /s /q %%A
popd
pause