gpt4 book ai didi

c# - 防病毒软件显着减慢写入磁盘的速度,是否有防止将数据存储在内存中的解决方法?

转载 作者:行者123 更新时间:2023-11-30 22:27:31 24 4
gpt4 key购买 nike

假设我正在通过套接字流接收一个文件,我一次接收 1024 个字节。每次我写入硬盘时,我的防病毒软件都会扫描整个文件。文件越大,写入下一个 1024 字节所需的时间就越长。更不用说“文件正在被另一个进程使用”错误。

我目前的解决方法是只将字节存储在内存中的字节数组中,最多 X 兆字节(用户定义),字节数组每次填满时都会附加到硬盘上的文件。

byte[] filebytearray = new byte[filesize]; //Store entire file in this byte array.

do
{
serverStream = clientSocket.GetStream();
bytesRead = serverStream.Read(inStream, 0, buffSize); //How many bytes did we just read from the stream?
recstrbytes = new byte[bytesRead]; //Final byte array this loop
Array.Copy(inStream, recstrbytes, bytesRead); //Copy from inStream to the final byte array this loop
Array.Copy(recstrbytes, 0, filebytearray, received, bytesRead); //Copy the data from the final byte array this loop to filebytearray

received += recstrbytes.Length; //Increment bytes received

}while (received < filesize);

addToBinary(filebytearray, @"C:\test\test.exe"); //Append filebytearray to binary

(在这个简化的示例中,它只是在将文件卸载到硬盘之前将整个文件存储在内存中)

但我绝对讨厌这种方法,因为它显着增加了我的程序使用的内存。

其他程序员如何解决这个问题?例如,当我使用 firefox 下载时,它只是全速下载,我的 AV 似乎直到下载完成才接收它,而且它几乎没有增加进程的内存使用量。这里有什么大 secret ?

附加到我正在使用的二进制函数(WIP):

private bool addToBinary(byte[] msg, string filepath)
{
Console.WriteLine("Appending "+msg.Length+" bytes of data.");

bool succ = false;

do
{
try
{
using (Stream fileStream = new FileStream(filepath, FileMode.Append, FileAccess.Write, FileShare.None))
{
fileStream.Write(msg, 0, msg.Length);
fileStream.Flush();
fileStream.Close();
}
succ = true;
}
catch (IOException ex) { /*Console.WriteLine("Write Exception (addToBinary) : " + ex.Message);*/ }
catch (Exception ex) { Console.WriteLine("Some Exception occured (addToBinary) : " + ex.Message); return false; }
} while (!succ);
return true;
}

最佳答案

我看到你每次写入数据时都重新打开文件。为什么不保持文件流打开?每次关闭它时,防病毒软件都会扫描它,因为它已被修改。

还有一个建议,WriteLine 函数的工作方式类似于 C++ 中的 printf,所以...而不是:

Console.WriteLine("Appending "+msg.Length+" bytes of data.");

你可以这样做:

Console.WriteLine("Appending {0} bytes of data.", msg.Length);

有时这确实可以节省您的时间。

关于c# - 防病毒软件显着减慢写入磁盘的速度,是否有防止将数据存储在内存中的解决方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11248686/

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