Esempio n. 1
0
            public Win32FileHandle(IntPtr handle, Win32FileSystem fs) : this(handle, fs, false)
            {
                IntPtr proc = Kernel32.GetCurrentProcess();

                this.handle = Kernel32.DuplicateHandle(proc, handle, proc, 0, true, 2);
                this.fs     = fs;
            }
Esempio n. 2
0
 private Win32FileHandle(IntPtr handle, Win32FileSystem fs, bool own) : base(fs)
 {
     if (own)
     {
         this.handle = handle;
     }
     else
     {
         IntPtr proc = Kernel32.GetCurrentProcess();
         this.handle = Kernel32.DuplicateHandle(proc, handle, proc, 0, true, 2);
     }
     this.fs = fs;
 }
Esempio n. 3
0
        private DateTime GetDateTime(IShellItem2 item, PROPERTYKEY property)
        {
            FILETIME ft = item.GetFileTime(property);

            return(Win32FileSystem.GetDateTime(ft));
        }