Beloew是我的代碼,我想保存一些信息用戶鍵保存到文件中,我在調試後如何繼續遇到Ioexception錯誤並單擊保存按鈕..請親切地說。我猜這與文件夾有關,但絕對沒有想法..當選擇保存按鈕時出現IoException錯誤
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace ASSISNMENTTT
{
public partial class Registeration : Form
{
public Registeration()
{
InitializeComponent();
}
private void Btn_Save_Click(object sender, EventArgs e)
{
// This is the button labeled "Save" in the program.
//
File.WriteAllText("C:\\demo.txt", Tb_Admin.Text);
File.WriteAllText("C:\\demo.txt", Tb_Name.Text);
File.WriteAllText("C:\\demo.txt", Tb_Gender.Text);
}
}
}
你可以給堆棧跟蹤和異常消息嗎? – 2010-12-14 01:50:39
嘗試將文件保存到其他位置,例如在用戶配置文件中。您可能沒有寫入權限C:\ – shf301 2010-12-14 02:08:57
正如有人在我刪除的答案中指出的那樣 - 如果存在權限問題而不是IOException,則會得到UnauthorizedAccessException。我的記憶一定要去! – 2010-12-14 02:14:01