1

Is there any way of obtaining the following metadata on an ext4 filesystem?

  • latest modified files
  • files modified during a certain period
  • largest file
  • files within a size range
rid
  • 951
  • 1
  • 7
  • 11

1 Answers1

4

There is no indexing of these values. You have to check all existing files (usually with find).

Hauke Laging
  • 5,285
  • 2
  • 24
  • 40