in reply to Backslashes in command arguements
Note that the Windows Admin share (C$) is shown with the $ escaped (C\$).my @filelist = glob( "c:\\temp\\*" ); my @filelist = glob( "c:/temp/*" ); my @filelist = glob( "//foobar/CDShare/*" ); my @filelist = glob( "//foobar/c\$/temp/*" );
|
|---|