创建并保存文本文件

时间:2014-01-02 08:06:06

标签: c#

我正在尝试在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.

0 个答案:

没有答案