View Single Post
09/13/15, 09:30 AM   #3
Jizargo
AddOn Author - Click to view addons
Join Date: Aug 2015
Posts: 33
Originally Posted by votan View Post
Where is "live", "liveeu" and "pts".
And I would start with asking the OS for the user "My Documents" path:
powershell:
Code:
[System.Environment]::GetFolderPath("MyDocuments")
C#:
Code:
System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments);
Which is not always located at "C:".
And you don't want to probe all drives.
I already use my documents folder location by default. I'm working on searching the entire C Drive for ESO's location incase it's installed somewhere else.

What is PTS? Can you confirm whether or not all ESO install locations include "Live" or "Liveeu" in their folder locations?
  Reply With Quote