Hi all, there is a way to check if a shared folder has write permissions?
I've tried with GetAttr() function, but using this:
Thanks! :)
I've tried with GetAttr() function, but using this:
Code:
Private Sub Form_Load()
'both returns false
MsgBox (GetAttr("\\listmf\rawer") = (vbDirectory Or vbReadOnly)) ' I haven't permissions to create any file or modify nothing
MsgBox (GetAttr("\\listmf\emeter") = (vbDirectory Or vbReadOnly)) ' I have permissions to create any file or modify anything
End Sub