我有種子allready this,但不是一個完整的解決這個問題。當我閱讀所有查找和包括文件夾編譯器梅格拋出關於未經授權的例外。錯誤拋出編譯器訪問路徑F:\系統卷信息\被拒絕。我的代碼是如何處理這種類型的probelm UnauthorizedAccessException是否handli錯誤?
private void toolStripButton8_Click(object sender, EventArgs e)
{
try
{
Uri _urii = new Uri(toolStripTextBox1.Text);
// MessageBox.Show(_urii.Host);
string _sthost = _urii.Host;
string aa = "F:\\" + _sthost + " ";
string[] _file = Directory.GetFiles("F:\\", "*.txt", SearchOption.AllDirectories); //Exception here create
foreach (var item in _file)
{
MessageBox.Show(item.Length.ToString());
我的問題是˚F驅動器中沒有有的System Volume Information文件夾 ..爲什麼拋出這種類型的異常。
我的帳戶等於管理...... – 2013-03-08 21:48:08
尼特挑:在這種情況下,編譯器ISN」發出錯誤,這是運行時 – JaredPar 2013-03-08 22:02:40