Help for this page

Select Code to Download


  1. or download this
    my $size = 0;
    for my $filename (glob("C:/")) {
        next unless -f $filename;
        $size += -s _;
    }