c# winform 浏览文件夹,将文件中的图片名显示在listbox里
我的代码如下FolderBrowserDialogdialog1=newFolderBrowserDialog();if(dialog1.ShowDialog()==Di...
我的代码如下
FolderBrowserDialog dialog1 = new FolderBrowserDialog();
if (dialog1.ShowDialog() == DialogResult.OK)
{
listBox1.Items.Clear();
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, "*.jpg ");
foreach (string s in tmp1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
这个只能打开jpg文件,还有其他后缀的图片,我也想打开,怎么做呢?
还有,不要告诉重复上述代码,将jpg改为其他后缀~谢谢了!! 展开
FolderBrowserDialog dialog1 = new FolderBrowserDialog();
if (dialog1.ShowDialog() == DialogResult.OK)
{
listBox1.Items.Clear();
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, "*.jpg ");
foreach (string s in tmp1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
这个只能打开jpg文件,还有其他后缀的图片,我也想打开,怎么做呢?
还有,不要告诉重复上述代码,将jpg改为其他后缀~谢谢了!! 展开
4个回答
展开全部
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, "*.jpg ");
改为
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath);
不就行了。。。。
改为
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath);
不就行了。。。。
追问
如果这样的话,文件夹中还有其他文件的话,比如word,不也就显示了吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
hult的方法是可以的
你先把所有的文件加进来再过滤出图片来
你先把所有的文件加进来再过滤出图片来
追问
您能给个例子吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
直接把 FolderBrowserDialog里面的filter 加上你需要的类型就可以了
更多追问追答
追问
我比较弱,您给个例呗?
追答
你是打算把某个文件夹里面的所有 指定后缀的文件选择出来吗? 另外我看错了 我以为你用的是 openfiledialog
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
//方法1
listBox1.Items.Clear();
string imgtype = "*.BMP|*.JPG|*.GIF|*.PNG";
string[] ImageType = imgtype.Split('|');
for (int i = 0; i < ImageType.Length; i++)
{
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, ImageType[i]);
foreach (string s in tmp1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
//方法2
listBox1.Items.Clear();
string imgtype = "BMP|JPG|GIF|PNG";
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, ImageType[i]);
foreach (string s in tmp1)
{
if (imgtype.IndexOf(new System.IO.FileInfo(s).Extension.ToUpper())>-1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
listBox1.Items.Clear();
string imgtype = "*.BMP|*.JPG|*.GIF|*.PNG";
string[] ImageType = imgtype.Split('|');
for (int i = 0; i < ImageType.Length; i++)
{
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, ImageType[i]);
foreach (string s in tmp1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
//方法2
listBox1.Items.Clear();
string imgtype = "BMP|JPG|GIF|PNG";
string[] tmp1 = System.IO.Directory.GetFiles(dialog1.SelectedPath, ImageType[i]);
foreach (string s in tmp1)
{
if (imgtype.IndexOf(new System.IO.FileInfo(s).Extension.ToUpper())>-1)
{
listBox1.Items.Add(new FileInfo(s).Name);
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询