gpt4 book ai didi

c# - StreamWriter 不附加到文件,而是在不同的目录中创建一个新文件

转载 作者:太空宇宙 更新时间:2023-11-03 15:40:07 25 4
gpt4 key购买 nike

在对源文件中的某些数据进行某些更改后,我试图从一个文件写入临时文件。这一直有效,直到我将此逻辑提取到它自己的函数中。

运行一些测试后,我注意到只有第一行被保存到我指定位置的文件中。调试后,我能够从对该函数的第二次调用中看到文件位置在一个完全不同的位置。

我有两个问题,第一 - 为什么会这样?第二 - 确保此问题得到解决并且不再发生的最佳方法是什么?

str[] 是由定界符一次一行分割的文件。filename 是文件目录中包含的特定文件的名称(此程序循环遍历多个文件)。

public static void writeFile(string[] str, string filename)
{
rowCount++;
using (StreamWriter sw = new StreamWriter(filename.Substring(0, filename.Length - 4) + "_tmp.txt", true, System.Text.Encoding.Unicode))
{
string tempString = String.Empty;
for (int i = 0; i < str.Length; i++)
{
if (isMRT)
{
tempString += str[i] + ",";
}
else
{
tempString += str[i] + "|";
}
}
logger.LogMessage("Writting line to file: " + "Row #: " + rowCount + " ,File Path: " + filename.Substring(0, filename.Length - 4) + "_tmp.txt");
sw.WriteLine(tempString);
}
}

编辑:这是我的目录和文件列表以及调用写入方法的函数

static string directory = ConfigurationManager.AppSettings["Directory"];
static List<String> fileNames = Directory.GetFiles(directory).ToList();

private static void activityCheck(string filename, string[] allLines)
{
foreach (string nextLine in allLines.Skip(1))
{
string[] tempLine;
if (isMRT)
{
tempLine = nextLine.Split(',');
}
else
{
tempLine = nextLine.Split('|');
}
logger.LogMessage("Checking Activity flag...");
if (tempLine[count].Length == 6)
{
checkColumn(tempLine);
logger.LogMessage("Activity flag is OK");
writeFile(tempLine, filename);
}
else if (tempLine[count].Length > 6)
{
tempLine[count] = tempLine[count].Trim();
checkColumn(tempLine);
logger.LogMessage("FIXED Activity flag");
writeFile(tempLine, filename);
}
else
{
logger.LogMessage("The Activity flag did not have enough numbers in Row #: " +rowCount);
//throw new Exception("There are not enough numbers in the Activity flag");
}


}
}

编辑2:新创建的临时文件在项目的 bin 文件夹中的 Visual Studio 文件夹中创建。不确定这对以前可能遇到过此问题的人是否有用。

最佳答案

我找到了解决问题的方法。我最初只是传递文件名而不是整个路径。当然,我错过了一个函数调用,我仍然传入文件名,而不是指向在项目目录中创建的临时文件的路径。

找到后快速修复:

activityCheck(nameOfFile, allLines);

activityCheck(pathToFile, allLines);

如果有人发现在 Project/bin/Debug 位置创建了文件,并且您知道您正确设置了目标目录,请仔细检查您传递的是实际路径。

关于c# - StreamWriter 不附加到文件,而是在不同的目录中创建一个新文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30533765/

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