本文介绍了如何使用C#获取文件夹值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 我有一个名为GPX的文件夹,下面的GPX文件中有值的值 1141370_p1.gpx 1143287_p1.gpx 从上面我想得到 1141370,1143287 。 当我运行我的代码时,在文本值中存储如下: D:/GPX/DOUFOVOGO \ _1141370_P1.gpxD:/GPX/DOUFOVOGO \ _1143287_P1.gpx 但在文本框中我必须存储的值如 1141370,1143287 为了获得以上输出,我必须做出哪些改变? 我尝试过: 我的代码如下: protected void btnsubmit_Click( object sender,EventArgs e) { foreach (字符串文件在 System.IO.Directory.E中numerateFiles( @ D:/ GPX /, * .gpx)) { txtgpx.Text + = file + Environment.NewLine; } } 解决方案 i have folder called GPX, in that GPX file below values are there1141370_p1.gpx1143287_p1.gpxFrom the above i want to get the 1141370,1143287.When i run my code, in the text value stored as follows:D:/GPX/DOUFOVOGO\1141370_P1.gpxD:/GPX/DOUFOVOGO\1143287_P1.gpxbut in the textbox i have to stored values like as 1141370,1143287For getting above output what changes i have to made?What I have tried:my code as follows:protected void btnsubmit_Click(object sender, EventArgs e) { foreach (string file in System.IO.Directory.EnumerateFiles(@"D:/GPX/", "*.gpx")) { txtgpx.Text += file + Environment.NewLine; } } 解决方案 这篇关于如何使用C#获取文件夹值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 10-12 06:05