What is the best method to get and set the attributes of any file(.exe, .txt, .mdb and etc |
Visual Basic Express Edition
What is the best method to get and set the attributes of any file(.exe, .txt, .mdb and etc |
SetAttr(
"c:\test.fil", FileAttribute.Hidden Or FileAttribute.System)MsgBox(GetAttr(
"c:\test.fil").ToString) End Sub