gpt4 book ai didi

c# - 如何在没有 CopyFile 或 CopyFileEx 的情况下在 Windows 上复制大文件?

转载 作者:可可西里 更新时间:2023-11-01 12:42:36 35 4
gpt4 key购买 nike

Windows Server 2003 有一个限制,它会阻止您复制与您拥有的 RAM 量成比例的超大文件。限制在于 CopyFile 和 CopyFileEx 函数,它们由 xcopy、Explorer、Robocopy 和 .NET FileInfo 类使用。

这是您得到的错误:

Cannot copy [filename]: Insufficient system resources exist to complete the requested service.

这是一个 knowledge base article关于这个主题,但它属于 NT4 和 2000。

还有建议给use ESEUTIL来自 Exchange 安装,但我没有运气让它工作。

有人知道处理此问题的快速简便方法吗?我说的是在具有 2Gb RAM 的机器上 >50Gb。我计划启动 Visual Studio 并编写一些东西来为我做这件事,但如果有一些已经存在、稳定且经过良好测试的东西会很好。

[编辑]我提供了有效的 C# 代码来配合接受的答案。

最佳答案

最好的选择是只打开原始文件进行读取,打开目标文件进行写入,然后逐 block 循环复制它。在伪代码中:

f1 = open(filename1);
f2 = open(filename2, "w");
while( !f1.eof() ) {
buffer = f1.read(buffersize);
err = f2.write(buffer, buffersize);
if err != NO_ERROR_CODE
break;
}
f1.close(); f2.close();

[Asker 编辑] 好吧,这就是它在 C# 中的样子(它很慢,但似乎工作正常,而且它带来了进步):

using System;
using System.Collections.Generic;
using System.IO;
using System.Text;

namespace LoopCopy
{
class Program
{
static void Main(string[] args)
{
if (args.Length != 2)
{
Console.WriteLine(
"Usage: LoopCopy.exe SourceFile DestFile");
return;
}

string srcName = args[0];
string destName = args[1];

FileInfo sourceFile = new FileInfo(srcName);
if (!sourceFile.Exists)
{
Console.WriteLine("Source file {0} does not exist",
srcName);
return;
}
long fileLen = sourceFile.Length;

FileInfo destFile = new FileInfo(destName);
if (destFile.Exists)
{
Console.WriteLine("Destination file {0} already exists",
destName);
return;
}

int buflen = 1024;
byte[] buf = new byte[buflen];
long totalBytesRead = 0;
double pctDone = 0;
string msg = "";
int numReads = 0;
Console.Write("Progress: ");
using (FileStream sourceStream =
new FileStream(srcName, FileMode.Open))
{
using (FileStream destStream =
new FileStream(destName, FileMode.CreateNew))
{
while (true)
{
numReads++;
int bytesRead = sourceStream.Read(buf, 0, buflen);
if (bytesRead == 0) break;
destStream.Write(buf, 0, bytesRead);

totalBytesRead += bytesRead;
if (numReads % 10 == 0)
{
for (int i = 0; i < msg.Length; i++)
{
Console.Write("\b \b");
}
pctDone = (double)
((double)totalBytesRead / (double)fileLen);
msg = string.Format("{0}%",
(int)(pctDone * 100));
Console.Write(msg);
}

if (bytesRead < buflen) break;

}
}
}

for (int i = 0; i < msg.Length; i++)
{
Console.Write("\b \b");
}
Console.WriteLine("100%");
Console.WriteLine("Done");
}
}
}

关于c# - 如何在没有 CopyFile 或 CopyFileEx 的情况下在 Windows 上复制大文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/92114/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com