Advertisement
Guest User

Untitled

a guest
Oct 21st, 2019
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. @echo off
  2. :00
  3. echo.
  4. echo MENU
  5. echo.
  6. echo c kopiowanie wszystkich plikow z folderu do innego
  7. echo d usowanie wszystkich plikow z rozszerzeniem podanym przez
  8. echo 2 trzecia...
  9. echo 3 koniec
  10. echo.
  11. set /p t="Wybor opcji: "
  12. IF %t%==c GOTO 01
  13. IF %t%==d GOTO 02
  14. IF %t%==2 GOTO 03
  15. IF %t%==3 GOTO 04
  16. :01
  17. copy G:\sw G:\sw\fol
  18. pause >>nul
  19. GOTO 00
  20. :02
  21. del G:\sw\fol\*txt
  22. pause >>nul
  23. GOTO 00
  24. .
  25. .
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement