随机文件选择器在每次执行时选择相同的值(批处理)

时间:2016-04-18 02:43:50

标签: batch-file random emulation picker

我正在尝试通过脚本使用此软件启动随机文件 - 唯一的问题是此脚本始终在每次启动时选择相同的随机数。对我来说总是41 ...有什么建议吗?

@echo on
setlocal EnableDelayedExpansion
cd C:\Users\User\Documents\Downloads\Nintendo
set n=0
for %%f in (*.*) do (
   set /A n+=1
   set "file[!n!]=%%f"
)
set /A "rand=%random% * 100 / 32768+1"
"C:\Users\User\Downloads\fceux-2.2.2-win32\fceux.exe" "!file[%rand%]!"

1 个答案:

答案 0 :(得分:0)

这对我有用:

@echo off
setlocal enabledelayedexpansion
c:
cd \windows

for %%f in (*.*) do (
   set /A n+=1
   set "file[!n!]=%%f"
)

rem change random seed value
for /l %%i in (0,1,%time:~-2%) do set /A tmp=!random!

set /A rand=!random! %% n-1
echo "!file[%rand%]!"