Hello everyone,
I have a problem with using global context CreateDirectory(...).
I need to create folders on mapped drive (mapped as X:)
While I am trying something like this:
Code |
---|
CreateDirectory("C:\NewFolder\") |
everything is ok. Directory is created without any problems.
But when I am trying
Code |
---|
CreateDirectory("X:\NewFolder\") |
there is a problem: "System cannot find this path" although there is a path "X:\"
Does somebody know if CreateDirectory works only for local drives or it can be used in mapped ones? I can't find the information.
Or... is it rather issue of priviliges/permissions? I don't know how to check it.
Thank you in advance for any help!
Kris