Beispiel #1
0
		public static ZDirectoryInfo GetDirectoryInfo(ref ZipRWArchiveCache zrw, string path,string parent="")
		{
			var info = new ZDirectoryInfo(path, ref zrw,parent);
			return info;
		}
Beispiel #2
0
		public static ZDirectoryInfo GetDirectoryInfo(string archiveFile, string path)
		{
			ZipRWArchiveCache zrw = new ZipRWArchiveCache(archiveFile);
			var info = new ZDirectoryInfo(path, ref zrw);
			return info;
		}