Beispiel #1
0
 public ZipFileInfo(DateTime fileTime)
 {
     date    = new ZipTime(fileTime);
     dosDate = IntPtr.Zero;
     internalFileAttributes = IntPtr.Zero;
     externalFileAttributes = IntPtr.Zero;
 }
Beispiel #2
0
		public ZipFileInfo (DateTime fileTime)
		{
			date = new ZipTime (fileTime);
			dosDate = new IntPtr ((int)fileTime.ToFileTime ());
			internalFileAttributes = IntPtr.Zero;
			externalFileAttributes = IntPtr.Zero;
		}
Beispiel #3
0
 public ZipFileInfo64(DateTime fileTime)
 {
     date    = new ZipTime(fileTime);
     dosDate = 0;
     internalFileAttributes = 0;
     externalFileAttributes = 0;
 }
Beispiel #4
0
		public ZipFileInfo64 (DateTime fileTime)
		{
			date = new ZipTime (fileTime);
			dosDate = 0;
			internalFileAttributes = 0;
			externalFileAttributes = 0;
		}