web-dev-qa-db-ja.com

FTP上のディレクトリのサイズを計算する方法は?

FTPフォルダーのサイズを計算する方法は? C#のツールやプログラム的な方法を知っていますか?

29
jlp

作業が必要なだけなら、SmartFTPが役立つかもしれません これにはPHPおよびASPスクリプト すべてのファイルを再帰的に処理することによるフォルダの合計サイズ。

4
zengr

FileZillaを使用している場合は、このトリックを使用できます。

  • サイズを計算したいフォルダをクリックします
  • クリック Add files to queue

これにより、すべてのフォルダーとファイルがスキャンされ、キューに追加されます。次に、キューペインを見て、その下(ステータスバー)に、キューのサイズを示すメッセージが表示されます。

83
janusman

次のように、この目的で dulftpコマンドを使用できます。

echo "du -hs ." | lftp example.com 2>&1

これは、現在のディレクトリのディスクサイズを含むディスクサイズを出力します。人間が読める形式のすべてのサブディレクトリ(-h)およびサブディレクトリの出力行(-s)を省略。 stderr出力は、2>&1を使用してstdoutに再ルーティングされるため、出力に含まれます。

ただし、lftpはLinux専用のソフトウェアであるため、C#から使用するには Cygwin 内で使用する必要があります。

lftp duコマンドのドキュメントは its manpage にはありませんが、help duコマンドを使用してlftpシェル内で利用できます。参考までに、その出力をここにコピーします。

lftp :~> help du
Usage: du [options] <dirs>
Summarize disk usage.
 -a, --all             write counts for all files, not just directories
     --block-size=SIZ  use SIZ-byte blocks
 -b, --bytes           print size in bytes
 -c, --total           produce a grand total
 -d, --max-depth=N     print the total for a directory (or file, with --all)
                       only if it is N or fewer levels below the command
                       line argument;  --max-depth=0 is the same as
                       --summarize
 -F, --files           print number of files instead of sizes
 -h, --human-readable  print sizes in human readable format (e.g., 1K 234M 2G)
 -H, --si              likewise, but use powers of 1000 not 1024
 -k, --kilobytes       like --block-size=1024
 -m, --megabytes       like --block-size=1048576
 -S, --separate-dirs   do not include size of subdirectories
 -s, --summarize       display only a total for each argument
     --exclude=PAT     exclude files that match PAT
15
tanius

LISTコマンドを送信すると、ディレクトリ内のファイルのリストとそれらに関するいくつかの情報(サイズが含まれていることは間違いありません)が表示され、解析して合計することができます。

サーバーへの接続方法によって異なりますが、WebRequest.Ftpクラスこれを行うListDirectoryDetailsメソッドがあります。詳細については here を、サンプルコードについては here を参照してください。

すべてのサブディレクトリを含む合計サイズが必要な場合は、各サブディレクトリを入力して再帰的に呼び出す必要があるため、非常に遅くなる可能性があることに注意してください。かなり遅いと思うので、通常はサーバー上のスクリプトでサイズを計算し、何らかの方法で結果を返すことをお勧めします(可能であれば、ダウンロードして読み取ることができるファイルに保存する)。

編集:または、あなたのためにそれを行うツールに満足することを単に意味する場合、FlashFXPはそれを行うと思います。おそらく他の高度なFTPクライアントも同様です。または、それがUNIXサーバーの場合、ログインしてls -laRまたは何かを使用して、再帰的なディレクトリリストを取得します。

2
Hans Olsson

いくつかの本番環境でFTPコマンドを実行するために、C#でAlex Pilottiの FTPSライブラリ を使用しています。ライブラリはうまく機能しますが、結果を得るには、ディレクトリ内のファイルのリストを再帰的に取得し、それらのサイズを加算する必要があります。これは、複雑なファイル構造を持つ一部の大規模サーバー(場合によっては1〜2分)では少し時間がかかる場合があります。

とにかく、これは私が彼のライブラリで使用する方法です:

/// <summary>
/// <para>This will get the size for a directory</para>
/// <para>Can be lengthy to complete on complex folder structures</para>
/// </summary>
/// <param name="pathToDirectory">The path to the remote directory</param>
public ulong GetDirectorySize(string pathToDirectory)
{
    try
    {
        var client = Settings.Variables.FtpClient;
        ulong size = 0;

        if (!IsConnected)
            return 0;

        var dirList = client.GetDirectoryList(pathToDirectory);
        foreach (var item in dirList)
        {
            if (item.IsDirectory)
                size += GetDirectorySize(string.Format("{0}/{1}", pathToDirectory, item.Name));
            else
                size += item.Size;
        }
        return size;
    }
    catch (Exception ex)
    {
        Console.WriteLine(ex.Message);
    }
    return 0;
}
1
jsmith

すべてのコンテンツを再帰的に使用してFTPディレクトリサイズを取得する最も簡単で効率的な方法。

var size = FtpHelper.GetFtpDirectorySize( "ftpURL"、 "userName"、 "password");

using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Threading;
using System.Threading.Tasks;

public static class FtpHelper
{
    public static long GetFtpDirectorySize(Uri requestUri, NetworkCredential networkCredential, bool recursive = true)
    {
        //Get files/directories contained in CURRENT directory.
        var directoryContents = GetFtpDirectoryContents(requestUri, networkCredential);

        long ftpDirectorySize = default(long); //Set initial value of the size to default: 0
        var subDirectoriesList = new List<Uri>(); //Create empty list to fill it later with new founded directories.

        //Loop on every file/directory founded in CURRENT directory. 
        foreach (var item in directoryContents)
        {
            //Combine item path with CURRENT directory path.
            var itemUri = new Uri(Path.Combine(requestUri.AbsoluteUri + "\\", item));
            var fileSize = GetFtpFileSize(itemUri, networkCredential); //Get item file size.

            if (fileSize == default(long)) //This means it has no size so it's a directory and NOT a file.
                subDirectoriesList.Add(itemUri); //Add this item Uri to subDirectories to get it's size later.
            else //This means it has size so it's a file.
                Interlocked.Add(ref ftpDirectorySize, fileSize); //Add file size to overall directory size.
        }

        if (recursive) //If recursive true: it'll get size of subDirectories files.
            //Get size of selected directory and add it to overall directory size.
            Parallel.ForEach(subDirectoriesList, (subDirectory) => //Loop on every directory
        Interlocked.Add(ref ftpDirectorySize, GetFtpDirectorySize(subDirectory, networkCredential, recursive)));

        return ftpDirectorySize; //returns overall directory size.
    }
    public static long GetFtpDirectorySize(string requestUriString, string userName, string password, bool recursive = true)
    {
        //Initialize Uri/NetworkCredential objects and call the other method to centralize the code
        return GetFtpDirectorySize(new Uri(requestUriString), GetNetworkCredential(userName, password), recursive);
    }

    public static long GetFtpFileSize(Uri requestUri, NetworkCredential networkCredential)
    {
        //Create ftpWebRequest object with given options to get the File Size. 
        var ftpWebRequest = GetFtpWebRequest(requestUri, networkCredential, WebRequestMethods.Ftp.GetFileSize);

        try { return ((FtpWebResponse)ftpWebRequest.GetResponse()).ContentLength; } //Incase of success it'll return the File Size.
        catch (Exception) { return default(long); } //Incase of fail it'll return default value to check it later.
    }
    public static List<string> GetFtpDirectoryContents(Uri requestUri, NetworkCredential networkCredential)
    {
        var directoryContents = new List<string>(); //Create empty list to fill it later.
        //Create ftpWebRequest object with given options to get the Directory Contents. 
        var ftpWebRequest = GetFtpWebRequest(requestUri, networkCredential, WebRequestMethods.Ftp.ListDirectory);
        try
        {
            using (var ftpWebResponse = (FtpWebResponse)ftpWebRequest.GetResponse()) //Excute the ftpWebRequest and Get It's Response.
            using (var streamReader = new StreamReader(ftpWebResponse.GetResponseStream())) //Get list of the Directory Contentss as Stream.
            {
                var line = string.Empty; //Initial default value for line
                while (!string.IsNullOrEmpty(line = streamReader.ReadLine())) //Read current line of Stream.
                    directoryContents.Add(line); //Add current line to Directory Contentss List.
            }
        }
        catch (Exception) { throw; } //Do nothing incase of Exception occurred.
        return directoryContents; //Return all list of Directory Contentss: Files/Sub Directories.
    }
    public static FtpWebRequest GetFtpWebRequest(Uri requestUri, NetworkCredential networkCredential, string method = null)
    {
        var ftpWebRequest = (FtpWebRequest)WebRequest.Create(requestUri); //Create FtpWebRequest with given Request Uri.
        ftpWebRequest.Credentials = networkCredential; //Set the Credentials of current FtpWebRequest.

        if (!string.IsNullOrEmpty(method))
            ftpWebRequest.Method = method; //Set the Method of FtpWebRequest incase it has a value.
        return ftpWebRequest; //Return the configured FtpWebRequest.
    }
    public static NetworkCredential GetNetworkCredential(string userName, string password)
    {
        //Create and Return NetworkCredential object with given UserName and Password.
        return new NetworkCredential(userName, password);
    }
}
1
Ahmed Sabry