I have a folder with 643 subfolders in it, and I want to be able to capture a screenshot of the contents of this folder (in a single image).

Now obviously, even with my 1920px resolution and the sub folders viewed as List, not all the folders appear in one screen...ie I have to scroll to the left to see the rest of them. Therefore, I cannot just take a single screenshot with the PRTSC button.

The way I used to do it before is take multiple screenshots of the folder, screen by screen, and then attach them together manually...but this is very time consuming.

So, is there a way (with an application maybe) that will take a single screenshot of the whole folder's contents ?


I tried it with Screenshot Captor but it doesn't seem to offer such functionality.

link|improve this question

62% accept rate
3  
Even if you take a screen shot you won't be able to display it at a sensible size if it doesn't fit on your screen to take the shot, wouldn't it be easier to just output a directory listing from the cmd prompt to a file? – Col Sep 21 '09 at 12:29
2  
I agree...screenshot of an explorer window is dumb. Just put it in a text file. – davr Sep 21 '09 at 17:07
feedback

5 Answers

up vote 15 down vote accepted

The free version of FastStone Capture will do this.
Use the 'Capture Scrolling Window' function (which also works on web pages):

alt text

link|improve this answer
1  
+1 Excellent, exactly what I was looking for. Tried it out now and it worked like a charm! – Andreas Grech Sep 21 '09 at 12:36
Cool app, +1 for you – Jeff F. Sep 16 '10 at 18:40
feedback

As per the earlier comment, you don't say why you're doing this, but by far the easiest way to do this would just be to capture the output of a directory listing at the command prompt. This also has the advantage over a screenshot that if you want to do anything with the listing other than just look at it, you can easily import this listing into other apps (eg Excel) or run scripts on it.

All you'd need to do is run CMD change to the directory you want to take a listing of and then run something like:

dir /B > c:\temp\listing.txt

This would give you a list of all the files and folders, with no headings, or file sizes etc, saved to a file called listing.txt in c:\temp.

Alternatively if you want all the extra info then this might be better:

dir /OGN /W > c:\temp\listing.txt
link|improve this answer
1  
yes yes i know that, but I needed a screenshot – Andreas Grech Sep 21 '09 at 12:44
feedback

A few Screen capture tools allow for you to define scrollable regions for screenshot composition.

FastStone Capture or SnagIt which are shareware possibilities. Or EasyCapture, a freeware alternative

link|improve this answer
feedback

There's another awesome utility that's lightweight and has some cool options like exporting to csv etc.(in addition to the requested screenshot feature) http://www.primeoption.com.au/FreewareYourDir.htm

link|improve this answer
feedback

Someone's already mentioned Faststone Capture.

However, you could try PicPick - http://picpick.wiziple.net/ - it should do what you want (and can apparently capture across dual monitors if you need that too, but I don't have two monitors to try it with). It's free for home use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.