Want to know what songs you have in your miscellaneous folder, or what .files are taking up space in your My Documents folder? Let AutoHotkey find out for you. Use the following simple script to catalogue disc contents and then compile it to make it an executable: SetWorkingDir, %1% Loop, * .doc, 1, 1 {All = %All%%A_LoopFileFullPath%'r' n}
Clipboard = %All%

Now, ifC :\misc\ DVD2 is the folder in question, just drag and drop the DVD2 folder on to the executable you created. Based on the script, all the returned data will be saved to the clipboard. All you have to do now is to fire up notepad and paste it and then save or print it as you please.

Name:  Folder Content Copy.jpg
Views: 33
Size:  16.1 KB

The above script will look not only in the DVD2 folder but also all the sub-directories under it. If you want all the files in a particular directory to be listed, you have to replace the "* .doc"partofthescriptwith "* .*". To learn more, visit AutoHotkey - Free Mouse and Keyboard Macro Program with Hotkeys and AutoText and master this simple program that's worth its weight in gold