Python calculates the script for all directory sizes under the specified path

Source: Internet
Author: User
Tags join

To detect the size of a file in a specified directory, just traverse the directory and then summarize the files, and here's a Python test. A script that detects all directory sizes under a specified path

Example

  code is as follows &nbs P;

Import Os,sys
from Os.path import getsize

def lsdir (Roo Tdir):
    list_dirs = Os.walk (rootdir)
    size = 0L
    for RO Ot,dirs,files in List_dirs:
        to name in Files:
   & nbsp;        size = GetSize (Os.path.join (root,name))
    Return size


def havedir (rootdir):
    list_dirs = Os.walk (rootdir)
     for Root,dirs,files in List_dirs:
        to dir in dirs:
             dirsize = Lsdir (Os.path.join (root,dir))
             dirsize = Int (dirsize)
            print dir, ":", Dirsize 1000

TargetDir = sys.argv[1]
Havedir (targetDir)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.