Can i use Application.OpenURL() for local files?

Hey guys, as the name of the question sais, am i able to access local programs like Skype, ICQ / whatever via application.OpenUrl?

my example :

Application.OpenURL(C://Users/BLAHH/BLAHH/BLAAAH.exe);

thank you in advance

bio

I’m not one hundred percent sure…

I assume that it might work, considering that website URLs have the http:// prefix which is what defines them as local URLs, so I reckon that something like

Application.OpenURL(C:\Program Files\Unity\Editor\Unity.exe);

should open up Unity!!!

Either way, have a play around and see what you can find!!!

Hope this helps!

-Grady