分享

PHP遍历目录返回统计目录大小

 乡间小路有风景 2014-07-23

PHP遍历目录返回统计目录大小实例

分享一个 PHP遍历目录并返回统计目录大小的方法。
代码:

<?php
$dirname = "test1"; 
//mkdir($dirname);

//遍历一层目录 
function listdir($dirname) { 
$ds = opendir($dirname); 
while($file = readdir($ds)) { 
$path = $dirname.'/'.$file; 
if(is_dir($file)) { 
echo "DIR:".$file."<br>"; 
if($file != "." && $file != "..") { 
listdir($file); 
} 
} 
else { 
echo "FILE:".$file . "<br>"; 
} 
} 
}

function totdir($dirname) { //对listdir稍加修改 
static $tot = 0; 
$ds = opendir($dirname); 
while($file = readdir($ds)) { 
$path = $dirname.'/'.$file; 
if(is_dir($file)) { 
//echo "DIR:".$file."<br>"; 
if($file != "." && $file != "..") { 
$tot += totdir($file); 
} 
} www.jbxue.com
else { 
//echo "FILE:".$file . "<br>"; 
$tot += filesize($path); 
} 
}

//返回总计 
return $tot; 
}

listdir($dirname);

echo totdir($dirname)." bytes";

?>

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多