在不引导到 Linux 的情况下,如何删除在 Linux 中创建的目录,该目录位于文件名中包含管道的 NTFS 分区上?
例如:
f:\flac\foreign\Yoshida_Brothers\Best_of_Yoshida_Brothers_|_Tsugaru_Shamisen
尝试并失败:
- 午夜指挥官
- 递归删除父文件夹
del /f /s /q Yoshida_Brothers
del /f /s /q "\\?f:\flac\foreign\Yoshida_Brothers\"
rmdir /s Yoshida_Brothers
rmdir Best*
- 文件刺客
- 无法删除文件夹
其他想法?
用管道字符替换单字符通配符
?
应该可以工作: