Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How can you get, the total size of a certain directory?

Answer Posted / suren

You can use the folowing function as shown in alt.php by
ryanflynnn at my-deja.com:


<?php

$totalsize=0;

function show_dir($dir, $pos=2){
global $totalsize;
if($pos == 2)
echo "<hr><pre>";
$handle = @opendir($dir);
while ($file = @readdir ($handle)){
if (eregi("^\.{1,2}$",$file))
continue;
if(is_dir($dir.$file)){
echo "|- ".$pos."s <b>$file</b>\n";
show_dir("$dir.$file/", $pos+3);
}else{
$size=filesize($dir.$file);
echo "|- ".$pos."s $file ";
echo("$size <br>");
$totalsize=$totalsize+$size;
}
}
@closedir($handle);

if($pos == 2) echo "</pre><hr>";

return($totalsize);
}

$totalsize = show_dir("c:/winnt/system32/");
echo($totalsize);
?>

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program in php to reverse a number?

976


What is if isset ($_ post submit )) in php?

1022


am from coimbatore.am learning php&mysql. what will be the approx salary for me if i get a job in coimbatore.

2065


sort term descripttion form, report and uery

2175


What is full form of php? Who is the father or inventor of php?

1003


Are react hooks stable?

923


why did u want to leave your past organisation?

2049


what does this symbol mean in php?

1123


Which method do you follow to get a record from a million records? (Searching not from database, from an array in php)?

969


hello all, I need some sample placement papers in lion bridge.. can anyone help me?

2035


Which php framework is in demand?

894


How to generate a form?

1162


What is the function used to change the root directory in PHP?

1006


What are the delimiters in php?

954


Does php support function overloading?

949