This question is locked. New answers and comments are not allowed.
Hi,
I'm using the following code to return the name of a document and the full path of a selected document:
I'm using the following code to return the name of a document and the full path of a selected document:
fileName =
Me.RadUpload1.UploadedFiles(0).GetName()
filePath =
Me.RadUpload1.UploadedFiles(0).FileName
Question: If the filePath is something like X:\SomeFolder\SomeDocument.xls, for which X points to a mapped drive like \\servera\
How can I return the filePath with the actual server name? instead of the mapped drive letter?
So I want: \\servera\SomeFolder\SomeDocument.xls,
instead of X:\SomeFolder\SomeDocument.xls,
thanks