LINQ 到文件/目录
如何使用 LINQ 查找特定目录中的特定文件并如果存在则返回 true?
How to find a specific file in a specific directory with LINQ and return true if it exists?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
为什么要使用 LINQ 来实现此目的?这可以满足您的需要:
Why would you use LINQ for this? This does what you need:
您可以这样做:
但是如果您已经知道文件的路径,则可以使用它:
You can do it like this:
But you could just use this if you already know the path of the file:
如果你喜欢这样的东西,你也可以考虑 FluentPath 。它是我不久前看到的 System.IO 的 Fluent 包装器。这是该网站的示例:
You can also consider FluentPath if you like such a thing. It is a Fluent wrapper around System.IO I saw a while back. Here is a sample from the site: