Beispiel #1
0
        private void GetConfig()
        {
            var tDir = ConfigTools.Get("TemplatesDirectory");

            if (string.IsNullOrEmpty(tDir))
            {
                tDir = ConfigTools.OriginalGet("TemplatesDirectory");

                while (tDir.LastIndexOf(@"\\") == tDir.Length - 2)
                {
                    tDir = tDir.Substring(0, tDir.Length - 1);
                }
            }

            if (string.IsNullOrEmpty(tDir))
            {
                TemplatesDirectory = Environment.SpecialFolder.Desktop.ToString();
            }
            else
            {
                TemplatesDirectory = tDir;
            }
        }