本文介绍了C#中的通配符的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图将所有文本文件添加到文件夹Source中,但是在运行代码时出现异常错误.
我用过:
Hi,
I am trying to add all text files in folder Source but get an exception error when I run the code.
I have used:
String sFile = "@c:\\Source\\*.txt";
任何帮助都会很棒.
在此先感谢:confused:
Trot
Any help would be great.
Thanks in advance:confused:
Trot
推荐答案
string sFile = @"c:\Source\*.txt";
应该解决您的第一个问题.或者,您可以删除"@"并保留所有内容.
Dave
Should fix your first issue. Alternatively, you can remove the "@" and leave everything the same.
Dave
string sFile = @"c:\Source\*.txt";
或
OR
string sFile = "c:\\Source\\*.txt";
这篇关于C#中的通配符的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!