我需要为 Windows 操作系统创建一个批处理文件,该文件将从特定文件夹中选择一个随机文件,然后将该文件复制到另一个文件夹。我仍然需要该文件的副本以保留在原始位置。
仅供参考,它需要是一个批处理文件。
在此先感谢您的帮助...
我需要为 Windows 操作系统创建一个批处理文件,该文件将从特定文件夹中选择一个随机文件,然后将该文件复制到另一个文件夹。我仍然需要该文件的副本以保留在原始位置。
仅供参考,它需要是一个批处理文件。
在此先感谢您的帮助...
@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
@echo off
set/a %%/folder
/a copy <folder2>