Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

System.Environment.OSVersion .NET Core 5.0 Framework replacement?

Tags:

c#

.net-core

System.Environment.OSVersion doesn't seem to be a part of .net core 5.0 (dnxcore50).

I am trying to determine which OS a user is on so when they save a file to the filesystem I know rather to use '/' or '\'

What should I use instead?

like image 233
allencoded Avatar asked Dec 01 '25 03:12

allencoded


1 Answers

Don't do the detection yourself. Use System.IO.Path.DirectorySeparatorChar. Also, if you always use Path to manipulate paths then you should get formatting that you need. This also works with URLs.

like image 103
lkg Avatar answered Dec 02 '25 17:12

lkg