Winform选择目录路径与选择文件路径

Posted luoeast

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Winform选择目录路径与选择文件路径相关的知识,希望对你有一定的参考价值。

https://blog.csdn.net/zaocha321/article/details/52528279

 

  • using System.Collections.Generic;
  • using System.ComponentModel;
  • using System.Data;
  • using System.Drawing;
  • using System.Text;
  • using System.Windows.Forms;
  • namespace WindowsApplication1 {
  • public partial class SelectFolder: Form {
  • public SelectFolder()
  • {
  • InitializeComponent();
  • }
  • private void btnSelectPath_Click(object sender, EventArgs e) //弹出一个选择目录的对话框
  • {
  • FolderBrowserDialog path = new FolderBrowserDialog();
  • path.ShowDialog();
  • this.txtPath.Text = path.SelectedPath;
  • }
  • private void btnSelectFile_Click(object sender, EventArgs e) //弹出一个选择文件的对话框
  • {
  • OpenFileDialog file = new OpenFileDialog();
  • file.ShowDialog();
  • this.txtFile.Text = file.SafeFileName;
  • }
  • }

 

以上是关于Winform选择目录路径与选择文件路径的主要内容,如果未能解决你的问题,请参考以下文章

winform 部署 dll路径

c# winform 如何实现选择另一台电脑上目录下的文件??

C# winform 如何存储用户选择的文件路径 下次启动时读取该路径

winform NPOI excel 导出并选择保存文件路径

用C# 选择路径 该怎么写。。。

(C#)winform中实现选择一个文件夹,将其压缩复制到另外一个路径 ///楼主这个问题怎么解决的呢?