把下面代码保存为bat,放在U盘任意位置即可
@echo off
cd /d %~d0
for /f "delims=" %%N in ('dir /ad /b /s') do attrib -s -h "%%N"
echo 现在文件夹可以显示了
pause>nul
Save the following code as a bat file and place it anywhere in the USB drive.
@echo off
cd /d %~d0
for /f "delims=" %%N in ('dir /ad /b /s') do attrib -s -h "%%N"
echo Now the folders can be displayed.
pause>nul