Windows批处理脚本,用于检查UNC路径和本地目录之间的重复项,并从以后删除它们


1

我想删除所有 今天的 文件在本地文件夹中 已经 存在 在网络路径(UNC)中。我运行了一个批处理,包括下面的命令,但不能说它工作正常。

@echo off
pushd \\server\archive
forfiles /p "PDF" /s /m "*.pdf" /d +0 /c "cmd /c del C:\Users\user\Desktop\F1\@file"
popd

运行命令时出现的错误是什么?
Burgi

起初,我测试了echo而不是del来列出两个文件夹中已经存在的.pdf文件,但它回应了一些只存在于服务器目录中的随机.pdf文件。
Roy
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.