Beispiel #1
0
        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);
        }
Beispiel #2
0
		public VfsError GetEntries (out VirtualEntry [] entries)
		{
			return DoGetEntries (out entries);
		}
Beispiel #3
0
		protected override VfsError DoGetEntries (out VirtualEntry [] entries)
		{
			throw new NotImplementedException ();
		}
Beispiel #4
0
		protected abstract VfsError DoGetEntries (out VirtualEntry [] entries);