Install folder differences: efianalytics vs. efiAnalytics

For discussion of Phil Tobin's Tuner Studio software (Only about the tuning software itself, not about how to tune or firmware features)

Moderator: LT401Vette

Post Reply
jsiedlicki
Master MS/Extra'er
Posts: 687
Joined: Sun Jun 23, 2013 3:52 pm

Install folder differences: efianalytics vs. efiAnalytics

Post by jsiedlicki »

I have registered copies of TS running on both Windows and Linux machines. I noticed that on both Windows & Linux there is a [UserHome]/.efianalytics folder, but on Linux there is also a [UserHome]/.efiAnalytics folder (note the case difference in the word Analytics). Since the Linux file system is case sensitive, I was wondering if there is a typo in the code that is splitting up some of the preference files on Linux only. On Linux the tsMS.reg and tsUser.properties files get put in the efiAnalytics folder and all other files go in efianalytics. In Windows all files are in the efianalytics folder.

What is the correct folder for all preference files?
MS3-Pro 1st Gen | Honda K24 Supercharged
MS3/MS3X | SB Ford 347 stroker
LT401Vette
Super MS/Extra'er
Posts: 12697
Joined: Sat Jul 16, 2005 8:07 am
Location: Moorseville, NC
Contact:

Re: Install folder differences: efianalytics vs. efiAnalytic

Post by LT401Vette »

They should all be in the .efiAnalytics folder.

I will bet it is as you speculate that the landing pages are using lower case.
Phil Tobin
EFI Analytics, helping to simplify EFI
Next Generation tuning software.
Supporting all MegaSquirt versions and firmwares.
http://www.TunerStudio.com
http://www.efiAnalytics.com/MegaLogViewer/
Support the firmware running your engine:
http://www.msextra.com/doc/donations.html
jsmcortina
Site Admin
Posts: 39587
Joined: Mon May 03, 2004 1:34 am
Location: Birmingham, UK
Contact:

Re: Install folder differences: efianalytics vs. efiAnalytic

Post by jsmcortina »

I have those two directories also.

Code: Select all

ls -ld ~/.efi*
drwxrwxrwx 6 jsm jsm 4096 Nov 28 12:44 /home/jsm/.efianalytics
drwxrwxrwx 2 jsm jsm 4096 Feb 18  2016 /home/jsm/.efiAnalytics
James
I can repair or upgrade Megasquirts in UK. http://www.jamesmurrayengineering.co.uk

My Success story: http://www.msextra.com/forums/viewtopic ... 04&t=34277
MSEXTRA documentation at: http://www.msextra.com/doc/index.html
New users, please read the "Forum Help Page".
LT401Vette
Super MS/Extra'er
Posts: 12697
Joined: Sat Jul 16, 2005 8:07 am
Location: Moorseville, NC
Contact:

Re: Install folder differences: efianalytics vs. efiAnalytic

Post by LT401Vette »

Yep, found it...

Code: Select all

    public static File getAppCachingDir(){
        File dir = new File(getUserHomeDir()+".efianalytics"+File.separator+AppProperties.appName+File.separator);
        if(!dir.exists()){
            dir.mkdirs();
        }
        return dir;
    }

Phil Tobin
EFI Analytics, helping to simplify EFI
Next Generation tuning software.
Supporting all MegaSquirt versions and firmwares.
http://www.TunerStudio.com
http://www.efiAnalytics.com/MegaLogViewer/
Support the firmware running your engine:
http://www.msextra.com/doc/donations.html
Post Reply