Example #1
0
        private string GetPath()
        {
            string strPath = userFolder + @"\Adjustment\" + scoutType.ToString() + @"\" + adjustmentType.ToString();

            if (!Directory.Exists(strPath))
            {
                Directory.CreateDirectory(strPath);
            }

            return(strPath);
        }
Example #2
0
        private string GetPath()
        {
            string strPath = userFolder + (mode == 0 ? @"\Formation\" : @"\Adjustment\") + scoutType.ToString();    // 08-30-2010 Scott

            if (!Directory.Exists(strPath))
            {
                Directory.CreateDirectory(strPath);
            }

            return(strPath);
        }