http://www.perlmonks.org?node_id=1024895


in reply to Connectivity to Windows Share

Not quite sure what you are looking for. The current shares can be seen via the "net use" command, or in code:

my $shares = `net use`; print $shares;

Replies are listed 'Best First'.
Re^2: Connectivity to Windows Share
by topher (Scribe) on Mar 22, 2013 at 15:16 UTC

    Agreed. Perl is awesome, but it isn't always the best option by itself. Often times it is best used as a glue language, making smart use of exiting tools that can already solve the problem.

    Christopher Cashell