具有相同前缀的文件移动到另一个目录

Files having same prefix to be moved to another directory

我有一个文件没有以 A_INI、A_FIF 结尾的扩展名。我需要编写一个代码来通过用户只输入 A 来搜索这个文件,如果存在我需要将 A_INI、A_FIF 复制到另一个文件夹。

示例文件夹包含 A_INI、A_FIF、A_LOG 通过提示用户输入文件名作为 A.

我必须检查以 A_* 开头的文件,如果存在我必须将其移动到另一个文件夹。

如何使用批处理脚本实现?

未测试:

@echo off

setlocal
set "source_dir=C:\source"
set "destination_dir=C:\dest"

set /p "mask=Enter a pattern: "

pushd "%source_dir%"
for %%# in ("%mask%_*") do (
   copy /y "%%~#" "%destination_dir%"
)
endlocal