Man šis ilgas ciklas neveikia...
On 4/12/2022 9:29 AM, Remigijus wrote:
> > O taip neveiktų ?
> > @echo off
> > ClS
> echo DELETE--------ENTER
> echo Uzsienio------1
> echo Classic-------2
> echo Lietuviska----3
> echo Graiku--------4
> echo Akordeonas----5
> echo Instrumentine-6
> echo Relax---------7
> echo Country-------8
> echo Tango---------9
> echo.
> > set "source=M:\SigMP3\0_Laikini"
> for %%F in ("%source%\*.mp3") do (
> set "file=%%~nxF"
> start "c:\Program Files (x86)\Winamp\winamp.exe /new" "%%F"
> > echo Klausomes "%file%" ir pasirenkam skaiciu
> set /a num1=0
> set /p num1=
> taskkill /im winamp.exe /f
> set /a n=%num1%
> > IF %n%==0 set "target=M:\SigMP3\00"
> IF %n%==1 set "target=M:\SigMP3\01Uzsienio"
> IF %n%==2 set "target=M:\SigMP3\02Classic"
> IF %n%==3 set "target=M:\SigMP3\03Lietuviska"
> IF %n%==4 set "target=M:\SigMP3\04Graiku"
> IF %n%==5 set "target=M:\SigMP3\05Akordeonas"
> IF %n%==6 set "target=M:\SigMP3\06Instrumentine"
> IF %n%==7 set "target=M:\SigMP3\07Relax"
> IF %n%==8 set "target=M:\SigMP3\08Country"
> IF %n%==9 set "target=M:\SigMP3\09Tango"
> > echo File "%file%" was moved from "%source%" to "%target%"
> pause
> move "%%F" "%target%"
> )