CM3D2.MaidFiddler.Plugin.Utils.Translation.Exists C# (CSharp) Method

Exists() public static method

public static Exists ( string name ) : bool
name string
return bool
        public static bool Exists(string name)
        {
            return File.Exists(Path.Combine(MaidFiddler.DATA_PATH, $@"{TRANSLATIONS_PATH}\{name}.txt"));
        }
    }