如何在文本框中显示完整的文件路径?
我有一个 FileDialog...
string fileData = openFileDialog1.FileName;
...和一个 TextBox1。如何查看TextBox1中打开文件的完整路径?
解决方案:
textBox1.Text = string.Format("{0}", openFileDialog1.FileName);
I have a FileDialog...
string fileData = openFileDialog1.FileName;
...and a TextBox1. How to see the full path of the opened file in the TextBox1?
Solution:
textBox1.Text = string.Format("{0}", openFileDialog1.FileName);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
使用 TextBox1.Text = openFileDialog1.FileName;
using
TextBox1.Text = openFileDialog1.FileName;
这是最好的代码,它对我来说 100% 有效:
this is the best code it works 100% for me :
请参阅下面的代码。
see below code.
这应该有效:
如果不起作用,请完善您的问题,准确说明您需要检索的内容并给出示例。
您可能还想检查一下这个:
从 OpenFileDialog 路径/文件名中提取路径
this should work:
if does not work, please refine your question telling exactly what you need to retrieve and giving examples.
you might want to check this one as well:
Extracting Path from OpenFileDialog path/filename
您还可以使用
TextBox1.Text = fileUpload.PostedFile.FileName;
,具体取决于您想要访问信息的时间。You may also use
TextBox1.Text = fileUpload.PostedFile.FileName;
depending upon when you want to access the information.声明变量后,尝试以下操作:
After declaring variable, try this: