BF2Statistics.Paths.Paths C# (CSharp) Method

Paths() static private method

static private Paths ( ) : System
return System
        static Paths()
        {
            // Define Documents Folder
            DocumentsFolder = Path.Combine(
                Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
                "BF2Statistics"
            );

            // Define python paths
            RankedPythonPath = Path.Combine(Program.RootPath, "Python", "Ranked");
            DefaultPythonPath = Path.Combine(Program.RootPath, "Python", "NonRanked");

            // Define Snapshot Paths
            SnapshotTempPath = Path.Combine(Program.RootPath, "Snapshots", "Temp");
            SnapshotProcPath = Path.Combine(Program.RootPath, "Snapshots", "Processed");
        }
Paths