BF2Statistics.StatsPython.RestoreRankedPyFiles C# (CSharp) Method

RestoreRankedPyFiles() public static method

Restores the ranked python files back to the original state, without affecting any custom scripts or medal data files
public static RestoreRankedPyFiles ( ) : void
return void
        public static void RestoreRankedPyFiles()
        {
            // Use my handy extension method to Copy over the files
            string path = (Installed) ? BF2Server.PythonPath : StatsBackupPath;
            DirectoryExt.Copy(Paths.RankedPythonPath, path, true, true);
        }