C# 檔案相關應用


檢查檔案位置是否存在

bool isFileExists = File.Exists(@"C:\檔案路徑");//存在為true

瀏覽檔案(檔案名稱)

private void button1_Click(object sender, EventArgs e)
{
    OpenFileDialog openFileDialog = new OpenFileDialog();
    if (openFileDialog.ShowDialog() == DialogResult.OK)
    {
        string templateName = openFileDialog.FileName;
        textBox1.Text = templateName;
    }
}
#C# #Winform







你可能感興趣的文章

[TensorFlow Certification Day6] 第二張上課證照入手

[TensorFlow Certification Day6] 第二張上課證照入手

【Day01】瀏覽器運作原理(客戶端-伺服器(Client/Server)架構)

【Day01】瀏覽器運作原理(客戶端-伺服器(Client/Server)架構)

NuGet套件是什麼?能吃嗎

NuGet套件是什麼?能吃嗎






留言討論