SA-MP Forums Archive
Notepad++ : Folder in network - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Notepad++ : Folder in network (/showthread.php?tid=582790)



Notepad++ : Folder in network - Dutheil - 23.07.2015

Hi, I have a question : how can I get the folder in the tree structure of Notepad++ ?

Because, my folder is in a NAS connected to my home network and i don't see the network :



Re: Notepad++ : Folder in network - Sithis - 23.07.2015

Mount the network folder to a drive letter!

Open the Command Prompt as an administrator. Then type the following command:

mklink /D C:\LinkName \NetworkLocation\LocationName

This will create a "symbolic link" on Drive C called "LinkName", which will link to "LocationName" on "\NetworkLocation". Windows will of course know that this is a symbolic link, but will treat it as if it was a folder on the local drive. All applications will treat this symbolic link as a local resource.


Re : Re: Notepad++ : Folder in network - Dutheil - 25.07.2015

Quote:
Originally Posted by Sithis
Посмотреть сообщение
Mount the network folder to a drive letter!

Open the Command Prompt as an administrator. Then type the following command:

mklink /D C:\LinkName \NetworkLocation\LocationName

This will create a "symbolic link" on Drive C called "LinkName", which will link to "LocationName" on "\NetworkLocation". Windows will of course know that this is a symbolic link, but will treat it as if it was a folder on the local drive. All applications will treat this symbolic link as a local resource.
Thanks guy, it works !