在 Windows 上递归删除文件

use*_*586 3 windows shell

我需要以._递归方式删除所有文件和目录:

find . -name \._* | xargs rm
Run Code Online (Sandbox Code Playgroud)

如何使用 DOS/shell 命令(不使用 Cygwin)在 Windows 上完成此操作?

小智 7

你试过del /s ._*吗?