最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Get Wifi SSID in macOs using .NET MAUI - Stack Overflow

programmeradmin3浏览0评论

I am using MAUI in .NET8 on macOs 15.3.2 and I am trying to get the connected WIFI name.

There are several ways found on Stackoverflow how to access it such as ipconfig getsummary en0

This works perfectly fine in the terminal window, but starting a process within my .NET 8 MAUI app, the result is empty.

The only (slow) workaround I can use is: system_profiler SPAirPortDataType and then parse the result to find the name of the connected wifi.


// No result:
ProcessUtility.GetOutput("ipconfig", "getsummary en0");

// Slow result, that I have to parse
ProcessUtility.GetOutput("system_profiler", "SPAirPortDataType");

public static string GetOutput(string processFileName, string args)
{
        Process process = new();
        process.StartInfo.FileName = processFileName;
        process.StartInfo.Arguments = args;

        process.StartInfo.UseShellExecute = false;
        process.StartInfo.RedirectStandardOutput = true;
        process.StartInfo.ErrorDialog = true;

        process.Start();
        process.WaitForExit(TimeoutOneSecond);
        return process.StandardOutput.ReadToEnd();
}

I guess the issue could have to do with the Sandbox mode or some other kind of restriction? But to be honest, I am not a macOs developer, so I have no glue.

Any ideas?

发布评论

评论列表(0)

  1. 暂无评论