如何创建文本框以保存路径
本文关键字:保存 路径 文本 何创建 创建 | 更新日期: 2023-09-27 17:56:44
我见过很多次,程序具有类似textbox
的东西,用于获取/保存某些东西的path
......上面有一个按钮,当你点击它时,它会打开一个提示,让你选择目录,你知道吗?我该怎么做?我必须阅读file.txt
,我需要我的应用程序来打开这个file.txt
,我如何打开这个"提示"?然后我需要以同样的方式保存destination path
...它实际上是textbox
还是别的什么?
谢谢
您需要
向窗体添加OpenFileDialog
(MSDN 提供了更多信息)
此示例应该比我更好地解释它!
private void button1_Click(object sender, System.EventArgs e)
{
Stream myStream = null;
OpenFileDialog openFileDialog1 = new OpenFileDialog();
openFileDialog1.InitialDirectory = "c:''" ;
openFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*" ;
openFileDialog1.FilterIndex = 2 ;
openFileDialog1.RestoreDirectory = true ;
if(openFileDialog1.ShowDialog() == DialogResult.OK)
{
try
{
if ((myStream = openFileDialog1.OpenFile()) != null)
{
using (myStream)
{
// Insert code to read the stream here.
}
}
}
catch (Exception ex)
{
MessageBox.Show("Error: Could not read file from disk. Original error: " + ex.Message);
}
}
}
您需要在
文本框旁边创建一个按钮。
在按钮的 Click 事件处理程序中,创建并显示SaveFileDialog
,然后将其结果分配给文本框的文本。
您可以使用 OpenFileDialog
string path;
OpenFileDialog file = new OpenFileDialog();
if (file.ShowDialog() == DialogResult.OK)
{
path = file.FileName;
}
现在,文件路径已保存到字符串中,然后您可以操作该文件。