View Single Post
09/13/15, 02:11 AM   #2
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by Jizargo View Post
So does the Elder Scrolls Online directory ever have anything besides Elder Scrolls Online\live or liveeu? I'm making a C Searcher for the Game's Addons location and UserSettings. I need additional checks to make sure it's absolutely the correct directory. Any ideas on doing that besides checking for "Elder Scrolls Online" and "live" and "UserSettings.txt" ?
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.

Last edited by votan : 09/13/15 at 03:12 AM.
  Reply With Quote