Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道我可以通过在 cmd 中使用以下代码来超级隐藏文件夹: attrib +S +H FolderName 但是当我的闪存连接到计算机时,我需要一个 .bat 文件来自动为我执行此操作。
如果您知道闪存驱动器号(或可能的字母范围),您可以使用
:LOOP for %%a in (E: F: G:) do ( if exist %%a\FolderToHide attrib +s +h %%a\FolderToHide ) timeout /t 5 goto :LOOP
超时只是为了使批处理不会使 CPU 周期超载,如果您不确定驱动器号,只需A:执行Z:.
A:
Z: