in reply to Recursive Directory print

There are a couple more methods
if windows:
$dir = "D:\books"; @output = `dir $dir /B /S`;
if unix:
$dir = "/some/path"; @output = `find $dir`;