使用 .net 枚举 apache 目录版本

发布于 2024-12-17 07:45:00 字数 291 浏览 1 评论 0原文

我正在尝试枚举文件系统,检查 wamp 中安装的 apache 版本。 apache 文件夹的名称中通常包含版本号。

我的目标是首先在每个驱动器中查找此文件夹

2.2.19
2.2.18
2.2.1
2.2.0

,以便文件路径看起来像 c:\wamp\bin\apache\apache2.2.20c:\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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

送你一个梦 2024-12-24 07:45:00

您可以使用 Directory.GetDirectories() 获取所有目录。

像这样的东西应该适合你:

var directory = @"C:\wamp\bin\apache\";
foreach(var dir in Directory.GetDirectories(directory)) {
    var version = dir.Replace(directory, "")
                     .Replace("Apache", "");

    Console.WriteLine("{0} is installed", version);
}

You can use Directory.GetDirectories() to get all directories.

Something like this should work for you:

var directory = @"C:\wamp\bin\apache\";
foreach(var dir in Directory.GetDirectories(directory)) {
    var version = dir.Replace(directory, "")
                     .Replace("Apache", "");

    Console.WriteLine("{0} is installed", version);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文