我需要为Windows操作系统创建一个批处理文件,该文件将从特定文件夹中选择一个随机文件,然后将该文件复制到另一个文件夹。我仍然需要该文件的副本才能保留在原始位置。
仅供参考,它需要是一个批处理文件。
先谢谢你的帮助......
答案 0 :(得分:3)
@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
答案 1 :(得分:1)
ng build -prod --base-href /users --deploy-url /public