When using opendir it is possible to open the dir of a folder on a local intranet.
Eg: $d = opendir("\\10.3.6.130\Folder");
which works without errors.
The error comes when trying the following:
$d = opendir("\\10.3.6.130\");
I am wanting a list of all shared folders on a certain computer denoted by ip address.
Is opendir the correct command and my syntax is wrong? Or is there another command to do such a task?
Thanks in advance.
Steve Heylings