admin管理员组文章数量:1348070
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?
本文标签: Get Wifi SSID in macOs using NET MAUIStack Overflow
版权声明:本文标题:Get Wifi SSID in macOs using .NET MAUI - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743842560a2548544.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论