Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        if(  $^O =~ /MSWin32/  ) {
            require Win32::DriveInfo;
    ...
            import Filesys::DiskFree;
        }
    }
    
  2. or download this
        if(  $^O =~ /MSWin32/  ) {
            require Win32::DriveInfo;
        } else {
            require Filesys::DiskFree;
        }