Re: [PHP] how to get the total disk space used in a directory

2001-09-23 Thread Alexander Skwar

So sprach »sagar N Chand« am 2001-09-23 um 22:51:49 +0530 :
 is there any way to get the total disk space used under a directory
 including its subdirectories and all the contents.

Either execute du, or sum up the sizes of all the files manually in PHP.

Alexander Skwar
-- 
How to quote:   http://learn.to/quote (german) http://quote.6x.to (english)
Homepage:   http://www.digitalprojects.com   |   http://www.iso-top.de
   iso-top.de - Die günstige Art an Linux Distributionen zu kommen
Uptime: 8 hours 48 minutes

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




RE: [PHP] how to get the total disk space used in a directory

2001-09-23 Thread Don Read


On 23-Sep-2001 sagar N Chand wrote:
 hi all,
 
 is there any way to get the total disk space used under a directory
 including its subdirectories and all the contents.
 
 /sagar
 

$duse=`du -sk /usr/foo`;
echo $duse, 'br';

Regards,
-- 
Don Read   [EMAIL PROTECTED]
-- It's always darkest before the dawn. So if you are going to 
   steal the neighbor's newspaper, that's the time to do it.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]