Tagged Questions
1
vote
2answers
505 views
PHP + MySQL: Finding total of values by recursing through mySQL parent children groups
I have a mySQL table like this:
Folders
[id] [name] [parent_id]
1 fruits 0
2 orange 1
3 lemon 2
4 steak 0
Projects
[id] [name] [parent_id] [hours]
1 project1 1 ...
2
votes
3answers
792 views
recurse directory for file extension with total?
I want to know how much disk space is being used by zip files (or any other extension) in a particular directory tree. Is this possible on the command line (in a batch program)?
I can list them, ie: ...