On Mon, 2005-06-20 at 17:20 +0800, Skehan Adrian wrote: > Can anyone who knows of an application that one can use to print a > directory/list of all file and folders on a hard drive please.
If you don't mind the format being pretty simple, you can use: find / -ls or find / -print (depending on what formatting you want) from the Terminal application. To save the output to a file (for later printing from a text editor) you can use: find / -ls > all_files_on_disk.txt -- Craig Ringer

