- To un-hide all files inside a folder
Output may defer according to system so, write the code and execute/run your batch file
@echo off
attrib -h /s /d F:\FolderName\*.*
It will hide all files & folders from the path "F:\FolderName\" -h = used to unhide file /s = Used to unhide all matching files, if used with -h /d = used to unhide folders. if used with -hProgram
After writing the code, Double-click your batch file, your files are now not hidden from that specific location
:: cmd to unhide all files inside folder
attrib -h /s /d [FOLDER_Full_PATHNAME]\*.*
Concept