Viewing all files in size order....Possible?

Messages
19,304
Name
Andy
Edit My Images
Yes
Hi, is it possible to view all the files on a drive in size order?

I know I can view files in specific folders in size order, but I want to view all my files in size order at once, via one click if possible.

Cheers.
 
This probably won't help, but:

cd <place you want to find>
find . -printf "%s\t%p\n" | sort -g -r

will do it on a Unix system (or a Windows machine with cygwin installed). Don't think you can do it graphically with Windows Explorer tho. as you can't flatten the directory structure.
 
This probably won't help, but:

cd <place you want to find>
find . -printf "%s\t%p\n" | sort -g -r

will do it on a Unix system (or a Windows machine with cygwin installed). Don't think you can do it graphically with Windows Explorer tho. as you can't flatten the directory structure.

Cheers, managed to find freeware software I can use...didn't see it when I Googled before posting thread...:thinking:
 
In Windows:

Find "*.*" then click on SIZE in the title bar.

In MacOS

Basically the same :)
 
Back
Top