使用 .net 枚举 apache 目录版本
我正在尝试枚举文件系统,检查 wamp 中安装的 apache 版本。 apache 文件夹的名称中通常包含版本号。
我的目标是首先在每个驱动器中查找此文件夹
2.2.19
2.2.18
2.2.1
2.2.0
,以便文件路径看起来像 c:\wamp\bin\apache\apache2.2.20
或 c:\wamp\bin\apache \apache2.2.1
如何检查此文件夹是否存在并从文件夹名称获取版本?
I am trying to enumerate the file system, checking for apache versions installed in wamp. The apache folder usually has the version numbers in the name.
My goal is first to look for this folder in each drive
2.2.19
2.2.18
2.2.1
2.2.0
so the file path can look like c:\wamp\bin\apache\apache2.2.20
or c:\wamp\bin\apache\apache2.2.1
How do I check if this folder exists and also get the version from the folder name?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Directory.GetDirectories() 获取所有目录。
像这样的东西应该适合你:
You can use Directory.GetDirectories() to get all directories.
Something like this should work for you: