1

次の方法以外に、Windows でファイルの名前を変更するより効率的な方法はありますか。

System.IO.File.Move(sourceFileName, destFileName);  

私はそれらを何百万も持っており、上記を使用すると、実行にほぼ1週間かかります。

4

1 に答える 1

1

File.Move は、Win32 API の薄いラッパーです。ディスク上のブロックレベルで生データを直接変更する以外に、より高速な方法があるとは思えません。マネージ コードからより高速な方法を探しているあなたは運が悪いと思います。

File.Move 逆コンパイル ソース:

public static void Move(string sourceFileName, string destFileName)
{
    if ((sourceFileName == null) || (destFileName == null))
    {
        throw new ArgumentNullException((sourceFileName == null) ? "sourceFileName" : "destFileName", Environment.GetResourceString("ArgumentNull_FileName"));
    }
    if ((sourceFileName.Length == 0) || (destFileName.Length == 0))
    {
        throw new ArgumentException(Environment.GetResourceString("Argument_EmptyFileName"), (sourceFileName.Length == 0) ? "sourceFileName" : "destFileName");
    }
    string fullPathInternal = Path.GetFullPathInternal(sourceFileName);
    new FileIOPermission(FileIOPermissionAccess.Write | FileIOPermissionAccess.Read, new string[] { fullPathInternal }, false, false).Demand();
    string dst = Path.GetFullPathInternal(destFileName);
    new FileIOPermission(FileIOPermissionAccess.Write, new string[] { dst }, false, false).Demand();
    if (!InternalExists(fullPathInternal))
    {
        __Error.WinIOError(2, fullPathInternal);
    }
    if (!Win32Native.MoveFile(fullPathInternal, dst))
    {
        __Error.WinIOError();
    }
}
于 2014-07-14T03:49:56.703 に答える