FTP에서 디스크 사용량을 확인하는 방법은 무엇입니까?

FTP에서 디스크 사용량을 확인하는 방법은 무엇입니까?

특정 디렉토리의 디스크 사용량을 요약하는 방법이 있습니까?파일 전송 프로토콜? 현재 디렉터리의 디스크 사용량을 확인하고 홈 디렉터리의 여유 공간을 출력하는 스크립트를 만들려고 합니다.

예:

ftp> cd /home/directory/
drw-rw-rw-   1 user     group           0 Nov 16 /directory
drw-rw-rw-   1 user     group           0 Nov 16 next/directory
drw-rw-rw-   1 user     group           0 Nov 16 next/next/directory

어떤 이유로 디렉토리의 크기가 표시되지 않습니다. 하지만 그 안에 사용법을 확인해야 하는 파일이 있으므로 다음과 같은 것을 얻어야 합니다.

total disk usage for /home/directory = "some count"
total disk usage for /next/directory = "some count"
total disk usage for /../directory = "some count"

답변1

나는 당신이 사용하는 것이 좋습니다컬 파일 시스템파일 시스템에 FTP 저장소를 마운트합니다. 그런 다음 du -shc .디스크 사용량을 알고 싶은 폴더에서 기존 명령을 사용하십시오.

답변2

펄을 사용할 수 있습니다. ~에서http://aplawrence.com/Unixart/perlnetftp.html:

#!/usr/bin/perl
my $param = $ARGV[0];
# required modules
 use Net::FTP;
 use File::Listing qw(parse_dir);

 sub getRecursiveDirListing
  {
      # create a new instance of the FTP connection
      my $ftp = Net::FTP->new("fftpserver", Debug=>0) or die("Cannot connect $!");
      # login to the server
      $ftp->login("username","password") or die("Login failed $!");

      # create an array to hold directories, it should be a local variable
      local @dirs = ();

      # directory parameter passed to the sub-routine
      my $dir = $_[0];

      # if the directory was passed onto the sub-routin, change the remote directory
      $ftp->cwd($dir) if($dir);

      # get the file listing
      @ls = $ftp->ls('-lR');

      # the current working directory on the remote server
      my $cur_dir = $ftp->pwd();

      my $totsize = 0;
      my $i = 0;
      my @arr = parse_dir(\@ls);
      my $arrcnt = scalar(@arr);
      if ($arrcnt == 0) {
        print "$cur_dir 0\n"; 
        $ftp->quit();
        exit 1;
      }
      else {
      # parse and loop through the directory listing
      foreach my $file (parse_dir(\@ls))
      {
          $i++;
          my($name, $type, $size, $mtime, $mode) = @$file; 
          $totsize = $totsize + $size if ($type eq 'f');

          print "$cur_dir $totsize\n" if ($i == $arrcnt);

          # recursive call to get the entries in the entry, and get an array of return values
#          @xx = getRecursiveDirListing ("$cur_dir/$name") if ($type eq 'd');
      }

      # close the FTP connection
      $ftp->quit();
      } 
      # merge the array returned from the recursive call with the current directory listing
#      return (@dirs,@xx);
  }
@y = getRecursiveDirListing ("$param");

실행하세요:

$ ./getSize.pl <directory>

관련 정보