1

I am using Windows. I have a folder with many subfolders. Inside are a lot of unorganized files. Some are a few KB's. Others a few GB's. I want to copy only those files smaller than 100mb. Is that possible? And yes, even though it's messy, I want to preserve their current file structure.

Oliver Salzburg
  • 87,539
  • 63
  • 263
  • 308
  • 1
    Which windows are you using. I seem to recall that windows 7 has a search function and you can search all files which match a certain criteria (e.g. not just in folder X, but also with size Y). Find all those files and then just drag-and-drop them to copy. – Hennes Jan 10 '15 at 13:26

1 Answers1

4

If you can use robocopy from a command prompt, it has a max parameter that would work.

Example:

robocopy c:\somefolder d:\destination /s /max:104857600
slhck
  • 228,104
Mark
  • 41