0

このコードを使用して、アプリケーションディレクトリ内のExcelファイルの名前を検索しています。しかし、ファイルが見つからない場合は、エラーメッセージを表示したいと思います。C#を使用してそれを行うにはどうすればよいですか?以下は、ファイルの検索に使用したコードです。

string linksfile;
string [] excelfile = Directory.GetFiles(Application.StartupPath + @"\", "*.xlsx");
linksfile = excelfile[0];

MessageBox.Show(linksfile);
4

2 に答える 2

2

確認する必要がありif (excelFile.Length > 0)ます。

于 2012-06-03T12:28:53.843 に答える
1
    string linksfile;
    string [] excelfile = Directory.GetFiles(Application.StartupPath + @"\", "*.xlsx");

    if(excelfile.Length > 0)
    {
        linksfile = excelfile[0];

        MessageBox.Show(linksfile);
    }
    else
    {
         MessageBox.Show("File not found");
    }
于 2012-06-03T12:28:49.607 に答える