我怎样才能获取所有不以“Something”开头的文件?
下面的行获取以 Cake 开头的所有文件。
Dim fi As System.IO.FileInfo() = di.GetFiles("Cake*")
我如何编写搜索模式来获取所有不以 Cake 开头的文件?
The line below fetches all files that start with Cake.
Dim fi As System.IO.FileInfo() = di.GetFiles("Cake*")
How can i write the search pattern to get all the files, that do not start with Cake?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
只是想提供 VB.Net 版本(从 @Daniel A. White 的 C# 版本转换而来),以防其他人偶然发现这一点。
Just wanted to give the VB.Net version (converted from @Daniel A. White's C# version) in case anyone else stumbles on this.
这将是用 C# 编写的,但它应该会让您接近。
This will be in C#, but it should get you close.
您获取所有以某些内容开头的文件,并使用所有不在该列表中且在原始列表中的文件?
You get all the files that start with something and use all that are not in that list and are in the original list?