本文介绍了使用Directory.EnumerateFiles进行多重过滤的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我无法使用VB.net 2013让以下行工作。
Dim files = Directory.EnumerateFiles(musicfolder,* .m4a; * .mp3; * .mp2; * .wav; * .wma; * .cda; *。ram)
是否存在可行的等效线相同的任务?
解决方案
I am having trouble getting the following line to work using VB.net 2013.
Dim files = Directory.EnumerateFiles(musicfolder, "*.m4a;*.mp3;*.mp2;*.wav;*.wma;*.cda;*.ram")
Is there an equivelent line that would work for doing the same task?
解决方案
这篇关于使用Directory.EnumerateFiles进行多重过滤的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!