Irena T. 12.Apr.12 12:16 PM a Web browser Domino DesignerAll ReleasesAll Platforms
I am using the DIR function to identify if directory exist. The function is failing for some users. All users are using the same operating system and the same notes version. This is a code sample:
If Dir(strFolder ) <> "" then
strMessage = "Current folder doesn't exist"
Else
strMessage = "Use current folder: "
End if
What could be a problem for this function to be inconsistent. Is there any other function I can use to verify if directory exists?