Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
To which directory or share is a disk letter mapped?
Message
From
04/07/2008 08:08:25
 
 
To
04/07/2008 07:57:53
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Environment versions
Visual FoxPro:
VFP 9 SP1
Miscellaneous
Thread ID:
01328956
Message ID:
01328958
Views:
24
This message has been marked as the solution to the initial question of the thread.
Hi Alejandro,

>How can you find out programmatically to which directory or share is a disk letter mapped?
>
>For example Z: may be mapped to "\\MyServer\MyServer_Z"
>
>TIA,
>
>Alex

this is a rough code snippet of mine
FUNCTION ConvertDrive2UNC
LPARAMETERS vLocalName
LOCAL lcUNCBuffer as String, liLength as Integer, lcLocalName as String, lcRemoteName as String

DECLARE INTEGER WNetGetConnection IN WIN32API ;
   STRING @ lpLocalName, ;
   STRING @ lpRemoteName, ;
   INTEGER @ lpliLength

* Just one letter? Then generate a Drivenumber
IF LEN(m.vLocalName) = 1
	m.vLocalName = m.vLocalName + [:]
ENDIF

lcUNCBuffer	= REPL(CHR(0),261)
liLength	= LEN(lcUNCBuffer)

IF WNetGetConnection(m.vLocalName, @lcUNCBuffer, @liLength) = 0
   lcRemoteName = LEFT(lcUNCBuffer,AT(CHR(0),lcUNCBuffer)-1)
ENDIF

RETURN lcRemoteName

ENDFUNC
Best Regards
-Tom

Debugging is twice as hard as writing the code in the first place.
Therefore, if you write the code as cleverly as possible, you are,
by definition, not smart enough to debug it.

Oh, and BTW: 010101100100011001010000011110000101001001101111011000110110101101110011
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform