我正在尝试在c#中创建和保存文本文件。当我编写代码时,localhost
非常流畅,但是当我在ftp上传这段代码时,它就会停止工作。
此代码非常适用于本地主机,但不适用于ftp。
StreamWriter _testData;
_testData = new StreamWriter(@"C:\Users\Public\Downloads\sample.txt", true);
_testData.WriteLine(text); // Write the file.
_testData.Close(); // Close the instance of StreamWriter.
_testData.Dispose(); // Dispose from memory.