本文介绍了如何使用文件夹浏览器对话框使用文件夹路径的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要以下代码的备用代码
I want a alternate code for the following code
String directoryName = @"C:\Users\Desktop\Refrigeration\RCA\RCA001\Children";
DialogResult result = folderBrowserDialog1.ShowDialog();
if (result == DialogResult.OK)
{
string[] files = Directory.GetFiles(folderBrowserDialog1.SelectedPath);
}
在上面的代码中,我使用文件夹浏览器对话框控件选择了路径。 />
现在我想将此路径用于上面给出的'directoryName'。
如何做到这一点
Here in the above code I have selected the path using Folder Browser Dialog Control.
Now I want to use this path for 'directoryName' given above.
How to do this
推荐答案
这篇关于如何使用文件夹浏览器对话框使用文件夹路径的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!