Inheritance: IDisposable
Exemplo n.º 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);
            }
        }
Exemplo n.º 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;
            }
		}