Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How to get Network Path by passing Base path(Local Path) , Suppose In Network Machine If D drive is shared In D Drive contains path called D:\MYPath , In user Machine I want to access Network drive called D as local drive D:\MYPath ,how I can access network drive as like normal Drive please help me .
Posted
Updated 13-Feb-14 23:17pm
v2
Comments
OriginalGriff 14-Feb-14 4:28am    
This is not a good question - we cannot work out from that little what you are trying to do.
Remember that we can't see your screen, access your HDD, or read your mind.
Perhaps an example would help us?
Use the "Improve question" widget to edit your question and provide better information.
Vishwanath.284 14-Feb-14 5:18am    
Please help me now ...
johannesnestler 14-Feb-14 6:18am    
You don't ask for creating a networkmapping (via netuse command), or do you?
Karen Mitchelle 14-Feb-14 6:27am    
As what I have understood, he wants to map his network drive..

1 solution

There are several ways to do this. One way to do it is from the command line:

net use x: \\computer name\share name

Assuming the "Network Path" has shared the D:\MYPath folder as MYPath the command line would be:

net use D: "Network Path"

or

net use D: "\\computer name\MYPath"

You can do this in a program by running the process CMD but normally this is a one time permanent thing.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900