如何在 C# 中实现 glob
我不知道在 StackOverflow 上发布你自己的问题答案是否合法,但我发现已经没有人问过这个问题了。 我去寻找 C# Glob 但没有找到,所以我写了一个其他人可能会觉得有用的。
I don't know if it's legit at StackOverflow to post your own answer to a question, but I saw nobody had asked this already. I went looking for a C# Glob and didn't find one, so I wrote one that others might find useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 C# 中的“dir”(又名“Get-ChildItem”)powershell cmdlet。
(我并不是说您是否应该这样做。)
您必须手动将此引用添加到您的项目文件(“.csproj”或“.vcproj”):
请参阅此处以了解有关如何使用的更多详细信息来自 C# 的 cmdlet:http://www.devx.com/tips/Tip/42716
这是一个工作程序:
You can use the "dir" (aka "Get-ChildItem") powershell cmdlet from C#.
(I'm not saying whether you should.)
You have to add this reference to your project file (".csproj" or ".vcproj") manually:
See here for more details on how to use cmdlets from C#: http://www.devx.com/tips/Tip/42716
Here a working program:
使用 DotNet.Glob 很容易实现
示例:
It is easy to implement with DotNet.Glob
Example: