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







你可能感興趣的文章

[計算機網路03] Web 與 HTTP 協定的應用層結構

[計算機網路03] Web 與 HTTP 協定的應用層結構

hexo 部署在 AWS S3 上面

hexo 部署在 AWS S3 上面

【Day01】ELK環境建置與介紹

【Day01】ELK環境建置與介紹






留言討論





2
2
2