C# 利用浏览按钮获得 文件路径 和 文件夹路径
更简单的方法:
-
//选择
-
private void btnUser_Click(object sender, EventArgs e) -
{ -
//选择文件 -
OpenFileDialog openFileDialog = new OpenFileDialog(); -
openFileDialog.Multiselect = true; -
//文件格式 -
openFileDialog.Filter = "所有文件|*.*"; -
//还原当前目录 -
openFileDialog.RestoreDirectory = true; -
//默认的文件格式 -
openFileDialog.FilterIndex = 1; -
if (openFileDialog.ShowDialog() == DialogResult.OK) -
{ -
string path = openFileDialog.FileName; -
![]()
-
} -
-
//选择文件夹 -
FolderBrowserDialog dialog = new FolderBrowserDialog(); -
dialog.Description = "请选择文件路径"; -
if (dialog.ShowDialog() == DialogResult.OK) -
{ -
string foldPath = dialog.SelectedPath; -
MessageBox.Show("已选择文件夹:" + foldPath, "选择文件夹提示", MessageBoxButtons.OK, MessageBoxIcon.Information); -
} -
}
{
浙公网安备 33010602011771号