如何使用 Windows XP 的批处理脚本列出所有子目录中的所有隐藏文件?
dir /S /aH 不起作用,因为它不会深入研究未隐藏的文件夹。
编辑: 结果是 dir /S /aH 只是我正在测试的非隐藏文件或文件夹中没有任何隐藏或系统文件或文件夹。
dir /S /aH doesnt work as it wont delve any deeper inside of unhidden folders.
EDIT: turns out it WAS dir /S /aH just there wasnt any hidden or system files or folders within the non hidden files or folders i was testing on.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是有问题的,我知道解决它的唯一方法很丑陋,并且会给你一个“函数”的结果:(
这不会告诉 mycallback 函数有关文件夹的信息,因为你说你想要文件)
编辑:看起来像
dir /B /S /aD
也有效This is problematic and the only way I know to solve it is ugly and will give you the result in a "function":
(This does not tell the mycallback function about folders since you said you wanted files)
Edit: It seems like
dir /B /S /a-D
also works