Posts: 27
Threads: 8
Joined: Jul 2008
Sorry for the basic question when using mkdir how do you go about making the folder hidden "invisible" and then viewable when enabled?sorry if this has been posted before i tried search but came back with no results.
Thanks
VεRiTλS™
Posts: 12,073
Threads: 140
Joined: Dec 2002
Macro
key Wd
str f="$desktop$\test40223"
mkdir f
2
SetAttr f FILE_ATTRIBUTE_HIDDEN 1 ;;hide
3
SetAttr f FILE_ATTRIBUTE_HIDDEN 2 ;;unhide
Posts: 27
Threads: 8
Joined: Jul 2008
Gintaras Wrote:Macro
key Wd
str f="$desktop$\test40223"
mkdir f
2
SetAttr f FILE_ATTRIBUTE_HIDDEN 1 ;;hide
3
SetAttr f FILE_ATTRIBUTE_HIDDEN 2 ;;unhide
Thanks Gintaras! much appreciated.
VεRiTλS™