OutputVar := Mfunc.FileGetAttrib([Filename])
Reports whether a file or folder is read-only, hidden, etc.
Filename
The name of the target file, which is assumed to be in %A_WorkingDir% if an absolute path isn't specified. If omitted, the current file of the innermost enclosing File-Loop will be used instead.
Can be MfString instance or var containing string.
Returns a string with a subset of the letters "RASHNDOCT"
Throws MfException is non-zero then InnerException has a message of A_LastError
Wrapper for AutoHotkey Docs - FileGetAttrib.
Static method.
The string returned will contain a subset of the letters in the string "RASHNDOCT":
R = read-only
A = ARCHIVE
S = SYSTEM
H = HIDDEN
N = NORMAL
D = DIRECTORY
O = OFFLINE
C = COMPRESSED
T = TEMPORARY
To check if a particular attribute is present in the retrieved string, following this example:
Attributes := Mfunc.FileGetAttrib("C:\My File.txt")
IfInString, Attributes, H MsgBox The file is hidden.
On a related note, to retrieve a file's 8.3 short name, follow this example:
Loop, C:\My Documents\Address List.txt
ShortPathName = %A_LoopFileShortPath% ; Will yield something similar to C:\MYDOCU~1\ADDRES~1.txt
See Also:AutoHotkey Docs - FileGetAttrib.
OutputVar := Mfunc.FileGetAttrib("C:\New Folder")