Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @ECHO off
- CLS
- ECHO Creo cartella %1
- MKDIR %1
- COPY C:\TEST\*.* %1
- PAUSE
- ECHO Vuoi cancellare la cartella C:\TEST? (s/N)
- READ A
- IF NOT "%a%"=="s" GOTO fine
- RD C:\TEST /S /Q
- :fine
- PAUSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement