Пример #1
0
        //public ImplFileSystemLocalRooted(string pRoot)
        //{
        //    rootDir = pRoot;
        //}



        protected override string correctPath(string pDir, string pName)
        {
            string res_ = pDir;

            if (pName != null && pName != string.Empty)
            {
                res_ = Path.Combine(res_, pName);
            }

            res_ = ToolMobile.correctPath(res_);


            return(res_);
        }