1

我让网络用户将我的文档重定向到网络驱动器。IE:在我拥有的服务器上:Z:\ENDUSERS\enduser.name...

我正在寻找创建 bat 文件,从 Z:\ENDUSERS 搜索所有 enduser.name 目录中的特定文件(仅向下一级)并将其删除。所有用户的文件名都相同,但没有必要搜索低于第一级的任何用户。

想法/建议?

4

1 回答 1

1

单程:

@echo off
set thefile=kill.me

for /d %%d in ("Z:\ENDUSERS\*") do (
    if exist "%%d\%thefile%" (
        del "%%d\%thefile%"
    )
)

(替换delecho测试)

于 2013-05-07T16:13:43.157 回答