View Single Post
ישן 01-03-08, 14:55   # 6
Striker
Permanently Banned
 
מיני פרופיל
תאריך הצטרפות: May 2007
הודעות: 812

Striker לא מחובר  

חיפוש זריז בגוגל הביא את התוצאה מהאתר PHP .NET (אחת התגובות)

PHP קוד:
function foldersize($path) {
    
$total_size 0;
    
$files scandir($path);

    foreach(
$files as $t) {
        if (
is_dir($t)) { // In case of folder
            
if ($t<>"." && $t<>"..") { // Exclude self and parent folder
                
$size foldersize($path "/" $t);
                
// print("Dir - $path/$t = $size<br>\n");
                
$total_size += $size;
            }
        }
        else { 
// In case of file
            
$size filesize($path "/" $t);
            
// print("File - $path/$t = $size<br>\n");
            
$total_size += $size;
        }    
    }
    return 
$total_size;

תהנה =]
  Reply With Quote