in reply to Re: Re: short dir listing
in thread short dir listing

Either use forward slashes in the dir name instead of backslashes or escape the backslashes in your dir name.

$dir = 'L:/Dir/To/Scan'; # or $dir = "L:\\Dir\\To\\Scan";

«Rich36»