in reply to Re: globbing on remote network paths
in thread globbing on remote network paths
I had this same issue and changed glob to use the forward slash convention for directories (instead of the Windows back slash).
ie my @files = glob( "\\\\server\\dir\\*" ) does not work
my @files = glob ( "//server/dir/*" ) does work