- To hide all files inside a folder
Output may defer according to your 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 hide file /s = Used to hide all matching files, if used with -h /d = used to hide folders, if used with -hProgram
After writing the code, Double-click your batch file, your files are now hidden from that specific location
:: cmd to hide all files inside folder
attrib +h /s /d [FOLDER_Full_PATHNAME]\*.*
Concept
Coming Soon !
QuickStrength does not come from winning. Your struggles develop your strengths.