Inheritance: IDisposable
コード例 #1
0
        public override bool CreateCmisSyncFolder()
        {
            this.watcher = new MacWatcher(Program.Controller.FoldersPath);

            if (!Directory.Exists(Program.Controller.FoldersPath))
            {
                Directory.CreateDirectory(Program.Controller.FoldersPath);
                return(true);
            }
            else
            {
                return(false);
            }
        }
コード例 #2
0
		public override bool CreateCmisSyncFolder ()
		{
            this.watcher = new MacWatcher (Program.Controller.FoldersPath);

            if (!Directory.Exists (Program.Controller.FoldersPath)) {
                Directory.CreateDirectory (Program.Controller.FoldersPath);
                return true;

            } else {
                return false;
            }
		}