Hey guys i need to know how to hide a file of which i dont know the name of.
for instance i have 6 folders named 1-6 but i think that their named a-f. and their directory is C:\users\all users\bond.
how would i go about doing this?
I dont need to hide the directory of which the files are located i need to be able to enter the directory and hide the files within.
here's the only thing i can think of:
@echo off
cd C:\users\all users\bond
attrib +h +s %filename% *
echo.
echo files successfully hidden.
pause
exit