我正在寫一個代碼,當用戶點擊打開文件,我想篩選文件的類型只能.txt,所以我做了下面的代碼,但它沒有工作,它沒有顯示任何txt文件在所有的,只是一個空文件夾,這裏是代碼:C#:openfiledialog過濾問題
try
{
OpenFileDialog o = new OpenFileDialog();
o.Filter = "Text File | .txt";
o.InitialDirectory = Application.StartupPath;
o.ShowDialog();
}
catch
{}
我會建議避免空'catch'塊爲好。你可能不想吞下異常。 –
是啊,你是對的,我不應該這樣做 – BOSS