예제 #1
0
        public JToken GetSelectedConfigFile()
        {
            string path = SelectedConfigLocalPath;

            if (path == null)
            {
                return(null);
            }

            JToken jtok = JsonController.ParseJson(FileContoller.Read(path));

            if (jtok == null)
            {
                PrintCheckConfigFile();
            }
            return(jtok);
        }