Advertisement
piffy

Copiafile

Aug 30th, 2021 (edited)
1,695
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. @ECHO off
  2. CLS
  3. ECHO Creo cartella %1
  4. MKDIR %1
  5. COPY C:\TEST\*.* %1
  6. PAUSE
  7. ECHO Vuoi cancellare la cartella C:\TEST? (s/N)
  8. READ A
  9. IF NOT "%a%"=="s" GOTO fine
  10. RD C:\TEST /S /Q
  11. :fine
  12. PAUSE
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement