Hello,
I need to browse a storage disk with almost 700GB of datas. There is a lot of directories.
I would like to make a script that browse all the structure and store it in a text file each night. Then I could make a little search program and it'll be much more faster than searching with the FIND command. Even store it in a mysql database.
I looked the docs about LS and TREE, but I can't get exactly what I want

.
I need something like
Code:
[YYYY.MM.DD-HH:MM][SIZE][FULLPATH]
for exemple :
Code:
[2006.01.11-09:05][4096][./custom/]
[2005.12.30-18:15][23579][./custom/bruit_graph.png]
With this format it's easy to sort by last modification.
- TREE is great, but sometimes dates aren't well displayed.
- LS is nice too, but I can't find a parameter to display the fullpath for each files on one line like TREE with the recursive option.
Please can you help me ?
Thanks you for your help !
RB