public VfsError Move(string source, string target) { if (source == null) { throw new ArgumentNullException("source"); } if (target == null) { throw new ArgumentNullException("target"); } if (VfsHandlers.IsAbsolute(source) || VfsHandlers.IsAbsolute(target)) { var sentry = VirtualEntry.FromUrl(source); var tentry = VirtualEntry.FromUrl(target); if (sentry.MountPoint != tentry.MountPoint) { } } return(VfsError.None); }
public VfsError GetEntries (out VirtualEntry [] entries) { return DoGetEntries (out entries); }
protected override VfsError DoGetEntries (out VirtualEntry [] entries) { throw new NotImplementedException (); }
protected abstract VfsError DoGetEntries (out VirtualEntry [] entries);