私はすでにこれを見ましたが、この問題を完全に解決するわけではありません。すべての検索を読み込んで、フォルダ コンパイラ meg をインクルードすると、Unauthorized に関する例外がスローされます。エラー スロー コンパイラ:
パス F:\System Volume information \ へのアクセスが拒否されました
私のコードは
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フォルダーがないことです。なぜこのタイプの例外をスローするのですか?