CmisSync.Lib.Producer.Watcher.MacWatcher.FileOrDirectoryExists C# (CSharp) Method

FileOrDirectoryExists() static private method

static private FileOrDirectoryExists ( string path, bool isFile ) : bool
path string
isFile bool
return bool
        internal static bool FileOrDirectoryExists(string path, bool isFile) {
            return isFile ? File.Exists(path) : Directory.Exists(path);
        }
    }