标题: [文件操作] 【已解决】批处理寻找指定文件夹并拷贝指定格式文件 [打印本页]
作者: hztccy 时间: 2024-5-31 15:10 标题: 【已解决】批处理寻找指定文件夹并拷贝指定格式文件
- @echo off
-
- rem 遍历当前系统上的所有分区
- For %%a in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do (
-
- rem 如果分区存在则遍历指定文件夹并输出完整路
- if exist "%%a:\" (
-
- rem 现在这里卡壳了。。。
-
- robocopy "遍历出来的路径" "目标路径" "*.mp4" /is
-
- ))
复制代码
太久没有写代码了。。。现在到了这里完全忘记该如何输出遍历出来的文件夹路径了。
作者: Five66 时间: 2024-5-31 16:53
for /d %%h in ("%%a:\*") do (
set fd=%%h
setlocal enabledelayedexpansion
if "!fd!" == "指定的" echo ,||do something
endlocal
)
欢迎光临 批处理之家 (http://bbs.bathome.net/) |
Powered by Discuz! 7.2 |