我创建了一个应用程序,它在单击按钮时在 FTP 服务器上创建一个文件夹。
现在我需要在其中存储一些文本文件。
我怎样才能做到这一点?
请记住,您必须在服务器上创建一个文件夹并设置读写权限,然后您可以创建一个文件夹,您可以在其中创建任何文件类型。
protected void Submit_ServerClick(object sender, EventArgs e)
{
`enter code here` using (StreamWriter _testData = new StreamWriter(Server.MapPath("~/data.txt"), true))
{
_testData.WriteLine("this is how you will create a file"); // Write the file.
}
}
或者
File.WriteAllText(Server.MapPath("~/data.txt"), TextBox1.Text);