Network path in scripting

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
binocular222
Posts: 1423
Joined: 04 Nov 2008 05:35
Location: Win11, Win10, 100% Scaling

Network path in scripting

Post by binocular222 »

I tried exploring network paths using scripts but these not works:

Code: Select all

::text listfolder("%net%\vn-han3941\")
::text listfolder("%net%")
::goto %net%\vn-han3941\
while this works

Code: Select all

::goto %net%
Anyone knows how to list all itmes in a network folder?
Thanks
I'm a casual coder using AHK language. All of my xys scripts:
http://www.xyplorer.com/xyfc/viewtopic. ... 243#p82488

admin
Site Admin
Posts: 66375
Joined: 22 May 2004 16:48
Location: Win8.1, Win10, Win11, all @100%
Contact:

Re: Network path in scripting

Post by admin »

Not officially supported.

Anyway, in the next version these will work (experimentally):
::text listfolder("\\YourServer")
::text listfolder("%net%")

Post Reply