windows batch file script to pick random files fro

2020-02-06 03:11发布

I need a batch script to randomly select X number of files in a folder and move them to another folder. How do I write a windows batch script that can do this?

4条回答
Lonely孤独者°
2楼-- · 2020-02-06 03:24

(I'm assuming that your X is known beforehand – represented by the variable $x in the following code).

Since you weren't adverse to a PowerShell solution:

Get-ChildItem SomeFolder | Get-Random -Count $x | Move-Item -Destination SomeOtherFolder

or shorter:

gci somefolder | random -c $x | mi -dest someotherfolder
查看更多
再贱就再见
3楼-- · 2020-02-06 03:27

here is a CMD code, which outputs the random file name (customize it to your needs):

@echo off & setlocal
set "workDir=C:\source\folder"
::Read the %random%, two times is'nt a mistake! Why? Ask Bill.
::In fact at the first time %random% is nearly the same.
@set /a "rdm=%random%"
set /a "rdm=%random%"
::Push to your path.
pushd "%workDir%"
::Count all files in your path. (dir with /b shows only the filenames)
set /a "counter=0"
for /f "delims=" %%i in ('dir /b ^|find "."') do call :sub1
::This function gives a value from 1 to upper bound of files
set /a "rdNum=(%rdm%*%counter%/32767)+1"
::Start a random file
set /a "counter=0"
for /f "delims=" %%i in ('dir /b ^|find "."') do set "fileName=%%i" &call :sub2
::Pop back from your path.
popd "%workDir%"
goto :eof
:: end of main
:: start of sub1
:sub1
::For each found file set counter + 1.
set /a "counter+=1"
goto :eof
:: end of sub1
:: start of sub2
:sub2
::1st: count again,
::2nd: if counted number equals random number then start the file.
set /a "counter+=1"
if %counter%==%rdNum% (
:: OUTPUT ALERT BOX with FILENAME
MSG * "%fileName%"
)
goto :eof
:: end of sub2
查看更多
一纸荒年 Trace。
4楼-- · 2020-02-06 03:38

The following Batch code will do it. Note that you will need to launch cmd using the following command line:

cmd /v:on

to enable delayed environment variable expansion. Note also that it will pick a random number of files from 0 to 32767 - you will probably want to modify this part to fit your requirements!

@ECHO OFF
SET SrcCount=0
SET SrcMax=%RANDOM%
FOR %F IN (C:\temp\source\*.*) DO IF !SrcCount! LSS %SrcMax% (
      SET /A SrcCount += 1
      ECHO !SrcCount! COPY %F C:\temp\output
      COPY %F C:\temp\output
      )
查看更多
smile是对你的礼貌
5楼-- · 2020-02-06 03:48
@echo off
setlocal EnableDelayedExpansion
cd \particular\folder
set n=0
for %%f in (*.*) do (
   set /A n+=1
   set "file[!n!]=%%f"
)
set /A "rand=(n*%random%)/32768+1"
copy "!file[%rand%]!" \different\folder

from Need to create a batch file to select one random file from a folder and copy to another folder

查看更多
登录 后发表回答