各位大佬,我想把.\cstrike\custom\csgoweapons\AK-47下的vpk格式文件随机复制一个到custom文件夹内,想使用相对路径设置,bat文件位于cstrike文件夹内
设置如下,@璐村惂鐢ㄦ埛_000076K馃惥 off
setlocal EnableDelayedExpansion
cd “custom\csgoweapons\AK-47"
set n=0
for %%f in (*.*) do (
set /A n+=1
set "file[!n!]=%%f"
)
for /L %%i in (1,1,%time:~-1%) do set "dummy=!random!"
set /A "rand=(n*%random%)/32768+1"
copy "!file[%rand%]!" “custom"
PAUSE
运行后提示
系统找不到指定的路径。
已复制 1 个文件。
请按任意键继续. . .
文件没有复制到想要的custom文件夹内,求大佬指点,错在哪里?本人小白求指点...!
设置如下,@璐村惂鐢ㄦ埛_000076K馃惥 off
setlocal EnableDelayedExpansion
cd “custom\csgoweapons\AK-47"
set n=0
for %%f in (*.*) do (
set /A n+=1
set "file[!n!]=%%f"
)
for /L %%i in (1,1,%time:~-1%) do set "dummy=!random!"
set /A "rand=(n*%random%)/32768+1"
copy "!file[%rand%]!" “custom"
PAUSE
运行后提示
系统找不到指定的路径。
已复制 1 个文件。
请按任意键继续. . .
文件没有复制到想要的custom文件夹内,求大佬指点,错在哪里?本人小白求指点...!