Example #1
0
        public bool Create()
        {
            if (this.Found)
            {
                return(true);
            }

            string e; Trace_i("Creating new folder...");

            if (
                _fs.TryCreateDir(this.Path, out e)
                )
            {
                return(Trace_o("Successfully created new folder."));
            }
            else
            {
                return(Error_o("Failed to create new folder." + L.F + e));
            }
        }