What would be the most robust way to test if your internet is connected to wifi or ethernet in R
?
I want to do an if
statement, something like:
if (internet == "wifi") {
return(x)
} else if (internet == "ethernet") {
return(y)
} else { #no internet
return(z)}
system("ipconfig", intern = T)
seems to be useful but I'm not sure what to extract so that it correctly identifies wifi/ethernet each time no matter what the connection setup is.
I'm working in a windows
environment.
thanks