问题描述
代码:
string folderName = this.folderBrowserDialog1.SelectedPath;
foreach(Directory.GetFiles(folderName)中的字符串f)
{
if(f.ToLower()。EndsWith(。jpg)== true || f.ToLower()。EndsWith(。jpeg)== true)
{
this.listBox1.Items.Add(f);
但是要获得完整的Filepath。如何才能获得没有扩展名的文件名?
我尝试了什么:
代码:
string folderName = this.folderBrowserDialog1.SelectedPath;
foreach(Directory.GetFiles(folderName)中的字符串f)
{
if(f.ToLower()。EndsWith(。jpg)== true || f.ToLower() .EndsWith(。jpeg)== true)
{
this.listBox1.Items.Add(f);
Code:
string folderName = this.folderBrowserDialog1.SelectedPath;
foreach (string f in Directory.GetFiles(folderName))
{
if (f.ToLower().EndsWith(".jpg")==true || f.ToLower().EndsWith(".jpeg")==true)
{
this.listBox1.Items.Add(f);
But get full Filepath. How can i get only filename without extension?
What I have tried:
Code: string folderName = this.folderBrowserDialog1.SelectedPath; foreach (string f in Directory.GetFiles(folderName)) { if (f.ToLower().EndsWith(".jpg")==true || f.ToLower().EndsWith(".jpeg")==true) { this.listBox1.Items.Add(f);
这篇关于如何获得C#folderbrowserdialog只有没有扩展名的文件名的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!