- Converted projects to .NET 4.5...
31338a34
Dimitar Tsenev
committed
33 changed files
ArchiveDetailView.cs
/BExplorer/BetterExplorer/ArchiveView/ArchiveDetailView.cs-2+2
/BExplorer/BetterExplorer/ArchiveView/ArchiveDetailView.cs
Add comment 31 //_iconReader.ReadIcons(pathIconLibrary).ForEach(o => archiveTree.ImageList.Images.Add(o.Icon));
Add comment 32 WindowsHelper.WindowsAPI.SetWindowTheme(lvArchiveDetails.Handle, "Explorer", null);
Add comment 33 SysImageListHelper.SetListViewImageList(lvArchiveDetails, lst, false);
Add comment 34 Minus   SevenZipExtractor.SetLibraryPath("7z.dll");
Add comment 34 Plus   SevenZipExtractor.SetLibraryPath(IntPtr.Size == 8 ? "7z64.dll" : "7z32.dll");
Add comment 35 _pathArchive = pathArchive;
Add comment 36
Add comment 37 Shown += ShowArchiveContent;
Add comment 201
Add comment 202 private void lvArchiveDetails_ItemActivate(object sender, EventArgs e)
Add comment 203 {
Add comment 204 Minus   IList<ArchiveFileInfo> archiveinfos = (sender as ListView).Tag as IList<ArchiveFileInfo>;
Add comment 204 Plus   IList<ArchiveFileInfo> archiveinfos = lvArchiveDetails.Tag as IList<ArchiveFileInfo>;
Add comment 205 List<ArchiveFileInfo> arhiveinfoList = new List<ArchiveFileInfo>();
Add comment 206 if (SelectedItem.SubItems[1].Text == "Folder")
Add comment 207 {
NtfsUsnJournal.cs
/BExplorer/BetterExplorer/MFTScanning/NtfsUsnJournal.cs+1115
/BExplorer/BetterExplorer/MFTScanning/NtfsUsnJournal.cs
Add comment 1 Plus  // NtfsUsnJournal.cs
Add comment 2 Plus  using System;
Add comment 3 Plus  using System.Collections.Generic;
Add comment 4 Plus  using System.Linq;
Add comment 5 Plus  using System.Text;
Add comment 6 Plus  using System.IO;
Add comment 7 Plus  using System.ComponentModel;
Add comment 8 Plus  using System.Runtime.InteropServices;
Add comment 9 Plus  using Microsoft.Win32.SafeHandles;
Add comment 10 Plus  
Add comment 11 Plus  namespace BetterExplorer
Add comment 12 Plus  {
Add comment 13 Plus   public class NtfsUsnJournal : IDisposable
Add comment 14 Plus   {
Add comment 15 Plus   #region enum(s)
Add comment 16 Plus   public enum UsnJournalReturnCode
Add comment 17 Plus   {
Add comment 18 Plus   INVALID_HANDLE_VALUE = -1,
Add comment 19 Plus   USN_JOURNAL_SUCCESS = 0,
Add comment 20 Plus   ERROR_INVALID_FUNCTION = 1,
Add comment 21 Plus   ERROR_FILE_NOT_FOUND = 2,
Add comment 22 Plus   ERROR_PATH_NOT_FOUND = 3,
Add comment 23 Plus   ERROR_TOO_MANY_OPEN_FILES = 4,
Add comment 24 Plus   ERROR_ACCESS_DENIED = 5,
Add comment 25 Plus   ERROR_INVALID_HANDLE = 6,
Add comment 26 Plus   ERROR_INVALID_DATA = 13,
Add comment 27 Plus   ERROR_HANDLE_EOF = 38,
Add comment 28 Plus   ERROR_NOT_SUPPORTED = 50,
Add comment 29 Plus   ERROR_INVALID_PARAMETER = 87,
Add comment 30 Plus   ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178,
Add comment 31 Plus   USN_JOURNAL_NOT_ACTIVE = 1179,
Add comment 32 Plus   ERROR_JOURNAL_ENTRY_DELETED = 1181,
Add comment 33 Plus   ERROR_INVALID_USER_BUFFER = 1784,
Add comment 34 Plus   USN_JOURNAL_INVALID = 17001,
Add comment 35 Plus   VOLUME_NOT_NTFS = 17003,
Add comment 36 Plus   INVALID_FILE_REFERENCE_NUMBER = 17004,
Add comment 37 Plus   USN_JOURNAL_ERROR = 17005
Add comment 38 Plus   }
Add comment 39 Plus  
Add comment 40 Plus   public enum UsnReasonCode
Add comment 41 Plus   {
Add comment 42 Plus   USN_REASON_DATA_OVERWRITE = 0x00000001,
Add comment 43 Plus   USN_REASON_DATA_EXTEND = 0x00000002,
Add comment 44 Plus   USN_REASON_DATA_TRUNCATION = 0x00000004,
Add comment 45 Plus   USN_REASON_NAMED_DATA_OVERWRITE = 0x00000010,
Add comment 46 Plus   USN_REASON_NAMED_DATA_EXTEND = 0x00000020,
Add comment 47 Plus   USN_REASON_NAMED_DATA_TRUNCATION = 0x00000040,
Add comment 48 Plus   USN_REASON_FILE_CREATE = 0x00000100,
Add comment 49 Plus   USN_REASON_FILE_DELETE = 0x00000200,
Add comment 50 Plus   USN_REASON_EA_CHANGE = 0x00000400,
Add comment 51 Plus   USN_REASON_SECURITY_CHANGE = 0x00000800,
Add comment 52 Plus   USN_REASON_RENAME_OLD_NAME = 0x00001000,
Add comment 53 Plus   USN_REASON_RENAME_NEW_NAME = 0x00002000,
Add comment 54 Plus   USN_REASON_INDEXABLE_CHANGE = 0x00004000,
Add comment 55 Plus   USN_REASON_BASIC_INFO_CHANGE = 0x00008000,
Add comment 56 Plus   USN_REASON_HARD_LINK_CHANGE = 0x00010000,
Add comment 57 Plus   USN_REASON_COMPRESSION_CHANGE = 0x00020000,
Add comment 58 Plus   USN_REASON_ENCRYPTION_CHANGE = 0x00040000,
Add comment 59 Plus   USN_REASON_OBJECT_ID_CHANGE = 0x00080000,
Add comment 60 Plus   USN_REASON_REPARSE_POINT_CHANGE = 0x00100000,
Add comment 61 Plus   USN_REASON_STREAM_CHANGE = 0x00200000,
Add comment 62 Plus   USN_REASON_CLOSE = -1
Add comment 63 Plus   }
Add comment 64 Plus  
Add comment 65 Plus   #endregion
Add comment 66 Plus  
Add comment 67 Plus   #region private member variables
Add comment 68 Plus  
Add comment 69 Plus   private DriveInfo _driveInfo = null;
Add comment 70 Plus   private uint _volumeSerialNumber;
Add comment 71 Plus   private IntPtr _usnJournalRootHandle;
Add comment 72 Plus  
Add comment 73 Plus   private bool bNtfsVolume;
Add comment 74 Plus  
Add comment 75 Plus   #endregion
Add comment 76 Plus  
Add comment 77 Plus   #region properties
Add comment 78 Plus  
Add comment 79 Plus   private static TimeSpan _elapsedTime;
Add comment 80 Plus   public static TimeSpan ElapsedTime
Add comment 81 Plus   {
Add comment 82 Plus   get { return _elapsedTime; }
Add comment 83 Plus   }
Add comment 84 Plus  
Add comment 85 Plus   public string VolumeName
Add comment 86 Plus   {
Add comment 87 Plus   get { return _driveInfo.Name; }
Add comment 88 Plus   }
Add comment 89 Plus  
Add comment 90 Plus   public long AvailableFreeSpace
Add comment 91 Plus   {
Add comment 92 Plus   get { return _driveInfo.AvailableFreeSpace; }
Add comment 93 Plus   }
Add comment 94 Plus  
Add comment 95 Plus   public long TotalFreeSpace
Add comment 96 Plus   {
Add comment 97 Plus   get { return _driveInfo.TotalFreeSpace; }
Add comment 98 Plus   }
Add comment 99 Plus  
Add comment 100 Plus   public string Format
Add comment 101 Plus   {
Add comment 102 Plus   get { return _driveInfo.DriveFormat; }
Add comment 103 Plus   }
Add comment 104 Plus  
Add comment 105 Plus   public DirectoryInfo RootDirectory
Add comment 106 Plus   {
Add comment 107 Plus   get { return _driveInfo.RootDirectory; }
Add comment 108 Plus   }
Add comment 109 Plus  
Add comment 110 Plus   public long TotalSize
Add comment 111 Plus   {
Add comment 112 Plus   get { return _driveInfo.TotalSize; }
Add comment 113 Plus   }
Add comment 114 Plus  
Add comment 115 Plus   public string VolumeLabel
Add comment 116 Plus   {
Add comment 117 Plus   get { return _driveInfo.VolumeLabel; }
Add comment 118 Plus   }
Add comment 119 Plus  
Add comment 120 Plus   public uint VolumeSerialNumber
Add comment 121 Plus   {
Add comment 122 Plus   get { return _volumeSerialNumber; }
Add comment 123 Plus   }
Add comment 124 Plus  
Add comment 125 Plus   #endregion
Add comment 126 Plus  
Add comment 127 Plus   #region constructor(s)
Add comment 128 Plus  
Add comment 129 Plus   /// <summary>
Add comment 130 Plus   /// Constructor for NtfsUsnJournal class. If no exception is thrown, _usnJournalRootHandle and
Add comment 131 Plus   /// _volumeSerialNumber can be assumed to be good. If an exception is thrown, the NtfsUsnJournal
Add comment 132 Plus   /// object is not usable.
Add comment 133 Plus   /// </summary>
Add comment 134 Plus   /// <param name="driveInfo">DriveInfo object that provides access to information about a volume</param>
Add comment 135 Plus   /// <remarks>
Add comment 136 Plus   /// An exception thrown if the volume is not an 'NTFS' volume or
Add comment 137 Plus   /// if GetRootHandle() or GetVolumeSerialNumber() functions fail.
Add comment 138 Plus   /// Each public method checks to see if the volume is NTFS and if the _usnJournalRootHandle is
Add comment 139 Plus   /// valid. If these two conditions aren't met, then the public function will return a UsnJournalReturnCode
Add comment 140 Plus   /// error.
Add comment 141 Plus   /// </remarks>
Add comment 142 Plus   public NtfsUsnJournal(DriveInfo driveInfo)
Add comment 143 Plus   {
Add comment 144 Plus   DateTime start = DateTime.Now;
Add comment 145 Plus   _driveInfo = driveInfo;
Add comment 146 Plus  
Add comment 147 Plus   if (0 == string.Compare(_driveInfo.DriveFormat, "ntfs", true))
Add comment 148 Plus   {
Add comment 149 Plus   bNtfsVolume = true;
Add comment 150 Plus  
Add comment 151 Plus   IntPtr rootHandle = IntPtr.Zero;
Add comment 152 Plus   UsnJournalReturnCode usnRtnCode = GetRootHandle(out rootHandle);
Add comment 153 Plus  
Add comment 154 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS)
Add comment 155 Plus   {
Add comment 156 Plus   _usnJournalRootHandle = rootHandle;
Add comment 157 Plus   usnRtnCode = GetVolumeSerialNumber(_driveInfo, out _volumeSerialNumber);
Add comment 158 Plus   if (usnRtnCode != UsnJournalReturnCode.USN_JOURNAL_SUCCESS)
Add comment 159 Plus   {
Add comment 160 Plus   _elapsedTime = DateTime.Now - start;
Add comment 161 Plus   throw new Win32Exception((int)usnRtnCode);
Add comment 162 Plus   }
Add comment 163 Plus   }
Add comment 164 Plus   else
Add comment 165 Plus   {
Add comment 166 Plus   _elapsedTime = DateTime.Now - start;
Add comment 167 Plus   throw new Win32Exception((int)usnRtnCode);
Add comment 168 Plus   }
Add comment 169 Plus   }
Add comment 170 Plus   else
Add comment 171 Plus   {
Add comment 172 Plus   _elapsedTime = DateTime.Now - start;
Add comment 173 Plus   throw new Exception(string.Format("{0} is not an 'NTFS' volume.", _driveInfo.Name));
Add comment 174 Plus   }
Add comment 175 Plus   _elapsedTime = DateTime.Now - start;
Add comment 176 Plus   }
Add comment 177 Plus  
Add comment 178 Plus   #endregion
Add comment 179 Plus  
Add comment 180 Plus   #region public methods
Add comment 181 Plus  
Add comment 182 Plus   /// <summary>
Add comment 183 Plus   /// CreateUsnJournal() creates a usn journal on the volume. If a journal already exists this function
Add comment 184 Plus   /// will adjust the MaximumSize and AllocationDelta parameters of the journal if the requested size
Add comment 185 Plus   /// is larger.
Add comment 186 Plus   /// </summary>
Add comment 187 Plus   /// <param name="maxSize">maximum size requested for the UsnJournal</param>
Add comment 188 Plus   /// <param name="allocationDelta">when space runs out, the amount of additional
Add comment 189 Plus   /// space to allocate</param>
Add comment 190 Plus   /// <param name="elapsedTime">The TimeSpan object indicating how much time this function
Add comment 191 Plus   /// took</param>
Add comment 192 Plus   /// <returns>a UsnJournalReturnCode
Add comment 193 Plus   /// USN_JOURNAL_SUCCESS CreateUsnJournal() function succeeded.
Add comment 194 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 195 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 196 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 197 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 198 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 199 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 200 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 201 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 202 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 203 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 204 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 205 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 206 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 207 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 208 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 209 Plus   /// </returns>
Add comment 210 Plus   /// <remarks>
Add comment 211 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 212 Plus   /// </remarks>
Add comment 213 Plus   public UsnJournalReturnCode
Add comment 214 Plus   CreateUsnJournal(ulong maxSize, ulong allocationDelta)
Add comment 215 Plus   {
Add comment 216 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 217 Plus   DateTime startTime = DateTime.Now;
Add comment 218 Plus  
Add comment 219 Plus   if (bNtfsVolume)
Add comment 220 Plus   {
Add comment 221 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE)
Add comment 222 Plus   {
Add comment 223 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 224 Plus   UInt32 cb;
Add comment 225 Plus  
Add comment 226 Plus   Win32Api.CREATE_USN_JOURNAL_DATA cujd = new Win32Api.CREATE_USN_JOURNAL_DATA();
Add comment 227 Plus   cujd.MaximumSize = maxSize;
Add comment 228 Plus   cujd.AllocationDelta = allocationDelta;
Add comment 229 Plus  
Add comment 230 Plus   int sizeCujd = Marshal.SizeOf(cujd);
Add comment 231 Plus   IntPtr cujdBuffer = Marshal.AllocHGlobal(sizeCujd);
Add comment 232 Plus   Win32Api.ZeroMemory(cujdBuffer, sizeCujd);
Add comment 233 Plus   Marshal.StructureToPtr(cujd, cujdBuffer, true);
Add comment 234 Plus  
Add comment 235 Plus   bool fOk = Win32Api.DeviceIoControl(
Add comment 236 Plus   _usnJournalRootHandle,
Add comment 237 Plus   Win32Api.FSCTL_CREATE_USN_JOURNAL,
Add comment 238 Plus   cujdBuffer,
Add comment 239 Plus   sizeCujd,
Add comment 240 Plus   IntPtr.Zero,
Add comment 241 Plus   0,
Add comment 242 Plus   out cb,
Add comment 243 Plus   IntPtr.Zero);
Add comment 244 Plus   if (!fOk)
Add comment 245 Plus   {
Add comment 246 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 247 Plus   }
Add comment 248 Plus   Marshal.FreeHGlobal(cujdBuffer);
Add comment 249 Plus   }
Add comment 250 Plus   else
Add comment 251 Plus   {
Add comment 252 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 253 Plus   }
Add comment 254 Plus   }
Add comment 255 Plus  
Add comment 256 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 257 Plus   return usnRtnCode;
Add comment 258 Plus   }
Add comment 259 Plus  
Add comment 260 Plus   /// <summary>
Add comment 261 Plus   /// DeleteUsnJournal() deletes a usn journal on the volume. If no usn journal exists, this
Add comment 262 Plus   /// function simply returns success.
Add comment 263 Plus   /// </summary>
Add comment 264 Plus   /// <param name="journalState">USN_JOURNAL_DATA object for this volume</param>
Add comment 265 Plus   /// <param name="elapsedTime">The TimeSpan object indicating how much time this function
Add comment 266 Plus   /// took</param>
Add comment 267 Plus   /// <returns>a UsnJournalReturnCode
Add comment 268 Plus   /// USN_JOURNAL_SUCCESS DeleteUsnJournal() function succeeded.
Add comment 269 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 270 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 271 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 272 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 273 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 274 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 275 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 276 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 277 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 278 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 279 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 280 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 281 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 282 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 283 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 284 Plus   /// </returns>
Add comment 285 Plus   /// <remarks>
Add comment 286 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 287 Plus   /// </remarks>
Add comment 288 Plus   public UsnJournalReturnCode
Add comment 289 Plus   DeleteUsnJournal(Win32Api.USN_JOURNAL_DATA journalState)
Add comment 290 Plus   {
Add comment 291 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 292 Plus   DateTime startTime = DateTime.Now;
Add comment 293 Plus  
Add comment 294 Plus   if (bNtfsVolume)
Add comment 295 Plus   {
Add comment 296 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE)
Add comment 297 Plus   {
Add comment 298 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 299 Plus   UInt32 cb;
Add comment 300 Plus  
Add comment 301 Plus   Win32Api.DELETE_USN_JOURNAL_DATA dujd = new Win32Api.DELETE_USN_JOURNAL_DATA();
Add comment 302 Plus   dujd.UsnJournalID = journalState.UsnJournalID;
Add comment 303 Plus   dujd.DeleteFlags = (UInt32)Win32Api.UsnJournalDeleteFlags.USN_DELETE_FLAG_DELETE;
Add comment 304 Plus  
Add comment 305 Plus   int sizeDujd = Marshal.SizeOf(dujd);
Add comment 306 Plus   IntPtr dujdBuffer = Marshal.AllocHGlobal(sizeDujd);
Add comment 307 Plus   Win32Api.ZeroMemory(dujdBuffer, sizeDujd);
Add comment 308 Plus   Marshal.StructureToPtr(dujd, dujdBuffer, true);
Add comment 309 Plus  
Add comment 310 Plus   bool fOk = Win32Api.DeviceIoControl(
Add comment 311 Plus   _usnJournalRootHandle,
Add comment 312 Plus   Win32Api.FSCTL_DELETE_USN_JOURNAL,
Add comment 313 Plus   dujdBuffer,
Add comment 314 Plus   sizeDujd,
Add comment 315 Plus   IntPtr.Zero,
Add comment 316 Plus   0,
Add comment 317 Plus   out cb,
Add comment 318 Plus   IntPtr.Zero);
Add comment 319 Plus  
Add comment 320 Plus   if (!fOk)
Add comment 321 Plus   {
Add comment 322 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 323 Plus   }
Add comment 324 Plus   Marshal.FreeHGlobal(dujdBuffer);
Add comment 325 Plus   }
Add comment 326 Plus   else
Add comment 327 Plus   {
Add comment 328 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 329 Plus   }
Add comment 330 Plus   }
Add comment 331 Plus  
Add comment 332 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 333 Plus   return usnRtnCode;
Add comment 334 Plus   }
Add comment 335 Plus  
Add comment 336 Plus   /// <summary>
Add comment 337 Plus   /// GetNtfsVolumeFolders() reads the Master File Table to find all of the folders on a volume
Add comment 338 Plus   /// and returns them in a SortedList<UInt64, Win32Api.UsnEntry> folders out parameter.
Add comment 339 Plus   /// </summary>
Add comment 340 Plus   /// <param name="folders">A SortedList<string, UInt64> list where string is
Add comment 341 Plus   /// the filename and UInt64 is the parent folder's file reference number
Add comment 342 Plus   /// </param>
Add comment 343 Plus   /// <param name="elapsedTime">A TimeSpan object that on return holds the elapsed time
Add comment 344 Plus   /// </param>
Add comment 345 Plus   /// <returns>
Add comment 346 Plus   /// USN_JOURNAL_SUCCESS GetNtfsVolumeFolders() function succeeded.
Add comment 347 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 348 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 349 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 350 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 351 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 352 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 353 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 354 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 355 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 356 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 357 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 358 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 359 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 360 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 361 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 362 Plus   /// </returns>
Add comment 363 Plus   /// <remarks>
Add comment 364 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 365 Plus   /// </remarks>
Add comment 366 Plus   public UsnJournalReturnCode
Add comment 367 Plus   GetNtfsVolumeFolders(out List<Win32Api.UsnEntry> folders)
Add comment 368 Plus   {
Add comment 369 Plus   DateTime startTime = DateTime.Now;
Add comment 370 Plus   folders = new List<Win32Api.UsnEntry>();
Add comment 371 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 372 Plus  
Add comment 373 Plus   if (bNtfsVolume)
Add comment 374 Plus   {
Add comment 375 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE)
Add comment 376 Plus   {
Add comment 377 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 378 Plus  
Add comment 379 Plus   Win32Api.USN_JOURNAL_DATA usnState = new Win32Api.USN_JOURNAL_DATA();
Add comment 380 Plus   usnRtnCode = QueryUsnJournal(ref usnState);
Add comment 381 Plus  
Add comment 382 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS)
Add comment 383 Plus   {
Add comment 384 Plus   //
Add comment 385 Plus   // set up MFT_ENUM_DATA structure
Add comment 386 Plus   //
Add comment 387 Plus   Win32Api.MFT_ENUM_DATA med;
Add comment 388 Plus   med.StartFileReferenceNumber = 0;
Add comment 389 Plus   med.LowUsn = 0;
Add comment 390 Plus   med.HighUsn = usnState.NextUsn;
Add comment 391 Plus   Int32 sizeMftEnumData = Marshal.SizeOf(med);
Add comment 392 Plus   IntPtr medBuffer = Marshal.AllocHGlobal(sizeMftEnumData);
Add comment 393 Plus   Win32Api.ZeroMemory(medBuffer, sizeMftEnumData);
Add comment 394 Plus   Marshal.StructureToPtr(med, medBuffer, true);
Add comment 395 Plus  
Add comment 396 Plus   //
Add comment 397 Plus   // set up the data buffer which receives the USN_RECORD data
Add comment 398 Plus   //
Add comment 399 Plus   int pDataSize = sizeof(UInt64) + 10000;
Add comment 400 Plus   IntPtr pData = Marshal.AllocHGlobal(pDataSize);
Add comment 401 Plus   Win32Api.ZeroMemory(pData, pDataSize);
Add comment 402 Plus   uint outBytesReturned = 0;
Add comment 403 Plus   Win32Api.UsnEntry usnEntry = null;
Add comment 404 Plus  
Add comment 405 Plus   //
Add comment 406 Plus   // Gather up volume's directories
Add comment 407 Plus   //
Add comment 408 Plus   while (false != Win32Api.DeviceIoControl(
Add comment 409 Plus   _usnJournalRootHandle,
Add comment 410 Plus   Win32Api.FSCTL_ENUM_USN_DATA,
Add comment 411 Plus   medBuffer,
Add comment 412 Plus   sizeMftEnumData,
Add comment 413 Plus   pData,
Add comment 414 Plus   pDataSize,
Add comment 415 Plus   out outBytesReturned,
Add comment 416 Plus   IntPtr.Zero))
Add comment 417 Plus   {
Add comment 418 Plus   IntPtr pUsnRecord = new IntPtr(pData.ToInt32() + sizeof(Int64));
Add comment 419 Plus   while (outBytesReturned > 60)
Add comment 420 Plus   {
Add comment 421 Plus   usnEntry = new Win32Api.UsnEntry(pUsnRecord);
Add comment 422 Plus   //
Add comment 423 Plus   // check for directory entries
Add comment 424 Plus   //
Add comment 425 Plus   if (usnEntry.IsFolder)
Add comment 426 Plus   {
Add comment 427 Plus   folders.Add(usnEntry);
Add comment 428 Plus   }
Add comment 429 Plus   pUsnRecord = new IntPtr(pUsnRecord.ToInt32() + usnEntry.RecordLength);
Add comment 430 Plus   outBytesReturned -= usnEntry.RecordLength;
Add comment 431 Plus   }
Add comment 432 Plus   Marshal.WriteInt64(medBuffer, Marshal.ReadInt64(pData, 0));
Add comment 433 Plus   }
Add comment 434 Plus  
Add comment 435 Plus   Marshal.FreeHGlobal(pData);
Add comment 436 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 437 Plus   if (usnRtnCode == UsnJournalReturnCode.ERROR_HANDLE_EOF)
Add comment 438 Plus   {
Add comment 439 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 440 Plus   }
Add comment 441 Plus   }
Add comment 442 Plus   }
Add comment 443 Plus   else
Add comment 444 Plus   {
Add comment 445 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 446 Plus   }
Add comment 447 Plus   }
Add comment 448 Plus   folders.Sort();
Add comment 449 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 450 Plus   return usnRtnCode;
Add comment 451 Plus   }
Add comment 452 Plus  
Add comment 453 Plus   public UsnJournalReturnCode
Add comment 454 Plus   GetFilesMatchingFilter(string filter, out List<Win32Api.UsnEntry> files)
Add comment 455 Plus   {
Add comment 456 Plus   DateTime startTime = DateTime.Now;
Add comment 457 Plus   filter = filter.ToLower();
Add comment 458 Plus   files = new List<Win32Api.UsnEntry>();
Add comment 459 Plus   string[] fileTypes = filter.Split(' ', ',', ';');
Add comment 460 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 461 Plus  
Add comment 462 Plus   if (bNtfsVolume)
Add comment 463 Plus   {
Add comment 464 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE)
Add comment 465 Plus   {
Add comment 466 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 467 Plus  
Add comment 468 Plus   Win32Api.USN_JOURNAL_DATA usnState = new Win32Api.USN_JOURNAL_DATA();
Add comment 469 Plus   usnRtnCode = QueryUsnJournal(ref usnState);
Add comment 470 Plus  
Add comment 471 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS)
Add comment 472 Plus   {
Add comment 473 Plus   //
Add comment 474 Plus   // set up MFT_ENUM_DATA structure
Add comment 475 Plus   //
Add comment 476 Plus   Win32Api.MFT_ENUM_DATA med;
Add comment 477 Plus   med.StartFileReferenceNumber = 0;
Add comment 478 Plus   med.LowUsn = 0;
Add comment 479 Plus   med.HighUsn = usnState.NextUsn;
Add comment 480 Plus   Int32 sizeMftEnumData = Marshal.SizeOf(med);
Add comment 481 Plus   IntPtr medBuffer = Marshal.AllocHGlobal(sizeMftEnumData);
Add comment 482 Plus   Win32Api.ZeroMemory(medBuffer, sizeMftEnumData);
Add comment 483 Plus   Marshal.StructureToPtr(med, medBuffer, true);
Add comment 484 Plus  
Add comment 485 Plus   //
Add comment 486 Plus   // set up the data buffer which receives the USN_RECORD data
Add comment 487 Plus   //
Add comment 488 Plus   int pDataSize = sizeof(UInt64) + 10000;
Add comment 489 Plus   IntPtr pData = Marshal.AllocHGlobal(pDataSize);
Add comment 490 Plus   Win32Api.ZeroMemory(pData, pDataSize);
Add comment 491 Plus   uint outBytesReturned = 0;
Add comment 492 Plus   Win32Api.UsnEntry usnEntry = null;
Add comment 493 Plus  
Add comment 494 Plus   //
Add comment 495 Plus   // Gather up volume's directories
Add comment 496 Plus   //
Add comment 497 Plus   while (false != Win32Api.DeviceIoControl(
Add comment 498 Plus   _usnJournalRootHandle,
Add comment 499 Plus   Win32Api.FSCTL_ENUM_USN_DATA,
Win32Api.cs
/BExplorer/BetterExplorer/MFTScanning/Win32Api.cs+1119
/BExplorer/BetterExplorer/MFTScanning/Win32Api.cs
Add comment 1 Plus  // Win32Api.cs
Add comment 2 Plus  using System;
Add comment 3 Plus  using System.Collections.Generic;
Add comment 4 Plus  using System.Text;
Add comment 5 Plus  using System.IO;
Add comment 6 Plus  using System.Runtime.InteropServices;
Add comment 7 Plus  using System.Security.Cryptography;
Add comment 8 Plus  using Microsoft.Win32;
Add comment 9 Plus  using System.ComponentModel;
Add comment 10 Plus  using Microsoft.Win32.SafeHandles;
Add comment 11 Plus  
Add comment 12 Plus  namespace BetterExplorer
Add comment 13 Plus  {
Add comment 14 Plus   public class Win32Api
Add comment 15 Plus   {
Add comment 16 Plus   #region enums
Add comment 17 Plus   public enum GetLastErrorEnum
Add comment 18 Plus   {
Add comment 19 Plus   INVALID_HANDLE_VALUE = -1,
Add comment 20 Plus   ERROR_SUCCESS = 0,
Add comment 21 Plus   ERROR_INVALID_FUNCTION = 1,
Add comment 22 Plus   ERROR_FILE_NOT_FOUND = 2,
Add comment 23 Plus   ERROR_PATH_NOT_FOUND = 3,
Add comment 24 Plus   ERROR_TOO_MANY_OPEN_FILES = 4,
Add comment 25 Plus   ERROR_ACCESS_DENIED = 5,
Add comment 26 Plus   ERROR_INVALID_HANDLE = 6,
Add comment 27 Plus   ERROR_INVALID_DATA = 13,
Add comment 28 Plus   ERROR_HANDLE_EOF = 38,
Add comment 29 Plus   ERROR_NOT_SUPPORTED = 50,
Add comment 30 Plus   ERROR_INVALID_PARAMETER = 87,
Add comment 31 Plus   ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178,
Add comment 32 Plus   ERROR_JOURNAL_NOT_ACTIVE = 1179,
Add comment 33 Plus   ERROR_JOURNAL_ENTRY_DELETED = 1181,
Add comment 34 Plus   ERROR_INVALID_USER_BUFFER = 1784
Add comment 35 Plus   }
Add comment 36 Plus  
Add comment 37 Plus   public enum UsnJournalDeleteFlags
Add comment 38 Plus   {
Add comment 39 Plus   USN_DELETE_FLAG_DELETE = 1,
Add comment 40 Plus   USN_DELETE_FLAG_NOTIFY = 2
Add comment 41 Plus   }
Add comment 42 Plus  
Add comment 43 Plus   public enum FILE_INFORMATION_CLASS
Add comment 44 Plus   {
Add comment 45 Plus   FileDirectoryInformation = 1, // 1
Add comment 46 Plus   FileFullDirectoryInformation = 2, // 2
Add comment 47 Plus   FileBothDirectoryInformation = 3, // 3
Add comment 48 Plus   FileBasicInformation = 4, // 4
Add comment 49 Plus   FileStandardInformation = 5, // 5
Add comment 50 Plus   FileInternalInformation = 6, // 6
Add comment 51 Plus   FileEaInformation = 7, // 7
Add comment 52 Plus   FileAccessInformation = 8, // 8
Add comment 53 Plus   FileNameInformation = 9, // 9
Add comment 54 Plus   FileRenameInformation = 10, // 10
Add comment 55 Plus   FileLinkInformation = 11, // 11
Add comment 56 Plus   FileNamesInformation = 12, // 12
Add comment 57 Plus   FileDispositionInformation = 13, // 13
Add comment 58 Plus   FilePositionInformation = 14, // 14
Add comment 59 Plus   FileFullEaInformation = 15, // 15
Add comment 60 Plus   FileModeInformation = 16, // 16
Add comment 61 Plus   FileAlignmentInformation = 17, // 17
Add comment 62 Plus   FileAllInformation = 18, // 18
Add comment 63 Plus   FileAllocationInformation = 19, // 19
Add comment 64 Plus   FileEndOfFileInformation = 20, // 20
Add comment 65 Plus   FileAlternateNameInformation = 21, // 21
Add comment 66 Plus   FileStreamInformation = 22, // 22
Add comment 67 Plus   FilePipeInformation = 23, // 23
Add comment 68 Plus   FilePipeLocalInformation = 24, // 24
Add comment 69 Plus   FilePipeRemoteInformation = 25, // 25
Add comment 70 Plus   FileMailslotQueryInformation = 26, // 26
Add comment 71 Plus   FileMailslotSetInformation = 27, // 27
Add comment 72 Plus   FileCompressionInformation = 28, // 28
Add comment 73 Plus   FileObjectIdInformation = 29, // 29
Add comment 74 Plus   FileCompletionInformation = 30, // 30
Add comment 75 Plus   FileMoveClusterInformation = 31, // 31
Add comment 76 Plus   FileQuotaInformation = 32, // 32
Add comment 77 Plus   FileReparsePointInformation = 33, // 33
Add comment 78 Plus   FileNetworkOpenInformation = 34, // 34
Add comment 79 Plus   FileAttributeTagInformation = 35, // 35
Add comment 80 Plus   FileTrackingInformation = 36, // 36
Add comment 81 Plus   FileIdBothDirectoryInformation = 37, // 37
Add comment 82 Plus   FileIdFullDirectoryInformation = 38, // 38
Add comment 83 Plus   FileValidDataLengthInformation = 39, // 39
Add comment 84 Plus   FileShortNameInformation = 40, // 40
Add comment 85 Plus   FileHardLinkInformation = 46 // 46
Add comment 86 Plus   }
Add comment 87 Plus  
Add comment 88 Plus   #endregion
Add comment 89 Plus  
Add comment 90 Plus   #region constants
Add comment 91 Plus   public const Int32 INVALID_HANDLE_VALUE = -1;
Add comment 92 Plus  
Add comment 93 Plus   public const UInt32 GENERIC_READ = 0x80000000;
Add comment 94 Plus   public const UInt32 GENERIC_WRITE = 0x40000000;
Add comment 95 Plus   public const UInt32 FILE_SHARE_READ = 0x00000001;
Add comment 96 Plus   public const UInt32 FILE_SHARE_WRITE = 0x00000002;
Add comment 97 Plus   public const UInt32 FILE_ATTRIBUTE_DIRECTORY = 0x00000010;
Add comment 98 Plus  
Add comment 99 Plus   public const UInt32 CREATE_NEW = 1;
Add comment 100 Plus   public const UInt32 CREATE_ALWAYS = 2;
Add comment 101 Plus   public const UInt32 OPEN_EXISTING = 3;
Add comment 102 Plus   public const UInt32 OPEN_ALWAYS = 4;
Add comment 103 Plus   public const UInt32 TRUNCATE_EXISTING = 5;
Add comment 104 Plus  
Add comment 105 Plus   public const UInt32 FILE_ATTRIBUTE_NORMAL = 0x80;
Add comment 106 Plus   public const UInt32 FILE_FLAG_BACKUP_SEMANTICS = 0x02000000;
Add comment 107 Plus   public const UInt32 FileNameInformationClass = 9;
Add comment 108 Plus   public const UInt32 FILE_OPEN_FOR_BACKUP_INTENT = 0x4000;
Add comment 109 Plus   public const UInt32 FILE_OPEN_BY_FILE_ID = 0x2000;
Add comment 110 Plus   public const UInt32 FILE_OPEN = 0x1;
Add comment 111 Plus   public const UInt32 OBJ_CASE_INSENSITIVE = 0x40;
Add comment 112 Plus   //public const OBJ_KERNEL_HANDLE = 0x200;
Add comment 113 Plus  
Add comment 114 Plus   // CTL_CODE( DeviceType, Function, Method, Access ) (((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
Add comment 115 Plus   private const UInt32 FILE_DEVICE_FILE_SYSTEM = 0x00000009;
Add comment 116 Plus   private const UInt32 METHOD_NEITHER = 3;
Add comment 117 Plus   private const UInt32 METHOD_BUFFERED = 0;
Add comment 118 Plus   private const UInt32 FILE_ANY_ACCESS = 0;
Add comment 119 Plus   private const UInt32 FILE_SPECIAL_ACCESS = 0;
Add comment 120 Plus   private const UInt32 FILE_READ_ACCESS = 1;
Add comment 121 Plus   private const UInt32 FILE_WRITE_ACCESS = 2;
Add comment 122 Plus  
Add comment 123 Plus   public const UInt32 USN_REASON_DATA_OVERWRITE = 0x00000001;
Add comment 124 Plus   public const UInt32 USN_REASON_DATA_EXTEND = 0x00000002;
Add comment 125 Plus   public const UInt32 USN_REASON_DATA_TRUNCATION = 0x00000004;
Add comment 126 Plus   public const UInt32 USN_REASON_NAMED_DATA_OVERWRITE = 0x00000010;
Add comment 127 Plus   public const UInt32 USN_REASON_NAMED_DATA_EXTEND = 0x00000020;
Add comment 128 Plus   public const UInt32 USN_REASON_NAMED_DATA_TRUNCATION = 0x00000040;
Add comment 129 Plus   public const UInt32 USN_REASON_FILE_CREATE = 0x00000100;
Add comment 130 Plus   public const UInt32 USN_REASON_FILE_DELETE = 0x00000200;
Add comment 131 Plus   public const UInt32 USN_REASON_EA_CHANGE = 0x00000400;
Add comment 132 Plus   public const UInt32 USN_REASON_SECURITY_CHANGE = 0x00000800;
Add comment 133 Plus   public const UInt32 USN_REASON_RENAME_OLD_NAME = 0x00001000;
Add comment 134 Plus   public const UInt32 USN_REASON_RENAME_NEW_NAME = 0x00002000;
Add comment 135 Plus   public const UInt32 USN_REASON_INDEXABLE_CHANGE = 0x00004000;
Add comment 136 Plus   public const UInt32 USN_REASON_BASIC_INFO_CHANGE = 0x00008000;
Add comment 137 Plus   public const UInt32 USN_REASON_HARD_LINK_CHANGE = 0x00010000;
Add comment 138 Plus   public const UInt32 USN_REASON_COMPRESSION_CHANGE = 0x00020000;
Add comment 139 Plus   public const UInt32 USN_REASON_ENCRYPTION_CHANGE = 0x00040000;
Add comment 140 Plus   public const UInt32 USN_REASON_OBJECT_ID_CHANGE = 0x00080000;
Add comment 141 Plus   public const UInt32 USN_REASON_REPARSE_POINT_CHANGE = 0x00100000;
Add comment 142 Plus   public const UInt32 USN_REASON_STREAM_CHANGE = 0x00200000;
Add comment 143 Plus   public const UInt32 USN_REASON_CLOSE = 0x80000000;
Add comment 144 Plus  
Add comment 145 Plus   public static Int32 GWL_EXSTYLE = -20;
Add comment 146 Plus   public static Int32 WS_EX_LAYERED = 0x00080000;
Add comment 147 Plus   public static Int32 WS_EX_TRANSPARENT = 0x00000020;
Add comment 148 Plus  
Add comment 149 Plus   public const UInt32 FSCTL_GET_OBJECT_ID = 0x9009c;
Add comment 150 Plus  
Add comment 151 Plus   // FSCTL_ENUM_USN_DATA = CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 44, METHOD_NEITHER, FILE_ANY_ACCESS)
Add comment 152 Plus   public const UInt32 FSCTL_ENUM_USN_DATA = (FILE_DEVICE_FILE_SYSTEM << 16) | (FILE_ANY_ACCESS << 14) | (44 << 2) | METHOD_NEITHER;
Add comment 153 Plus  
Add comment 154 Plus   // FSCTL_READ_USN_JOURNAL = CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 46, METHOD_NEITHER, FILE_ANY_ACCESS)
Add comment 155 Plus   public const UInt32 FSCTL_READ_USN_JOURNAL = (FILE_DEVICE_FILE_SYSTEM << 16) | (FILE_ANY_ACCESS << 14) | (46 << 2) | METHOD_NEITHER;
Add comment 156 Plus  
Add comment 157 Plus   // FSCTL_CREATE_USN_JOURNAL CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 57, METHOD_NEITHER, FILE_ANY_ACCESS)
Add comment 158 Plus   public const UInt32 FSCTL_CREATE_USN_JOURNAL = (FILE_DEVICE_FILE_SYSTEM << 16) | (FILE_ANY_ACCESS << 14) | (57 << 2) | METHOD_NEITHER;
Add comment 159 Plus  
Add comment 160 Plus   // FSCTL_QUERY_USN_JOURNAL CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 61, METHOD_BUFFERED, FILE_ANY_ACCESS)
Add comment 161 Plus   public const UInt32 FSCTL_QUERY_USN_JOURNAL = (FILE_DEVICE_FILE_SYSTEM << 16) | (FILE_ANY_ACCESS << 14) | (61 << 2) | METHOD_BUFFERED;
Add comment 162 Plus  
Add comment 163 Plus   // FSCTL_DELETE_USN_JOURNAL CTL_CODE(FILE_DEVICE_FILE_SYSTEM, 62, METHOD_BUFFERED, FILE_ANY_ACCESS)
Add comment 164 Plus   public const UInt32 FSCTL_DELETE_USN_JOURNAL = (FILE_DEVICE_FILE_SYSTEM << 16) | (FILE_ANY_ACCESS << 14) | (62 << 2) | METHOD_BUFFERED;
Add comment 165 Plus  
Add comment 166 Plus   #endregion
Add comment 167 Plus  
Add comment 168 Plus   #region dll imports
Add comment 169 Plus  
Add comment 170 Plus   /// <summary>
Add comment 171 Plus   /// Creates the file specified by 'lpFileName' with desired access, share mode, security attributes,
Add comment 172 Plus   /// creation disposition, flags and attributes.
Add comment 173 Plus   /// </summary>
Add comment 174 Plus   /// <param name="lpFileName">Fully qualified path to a file</param>
Add comment 175 Plus   /// <param name="dwDesiredAccess">Requested access (write, read, read/write, none)</param>
Add comment 176 Plus   /// <param name="dwShareMode">Share mode (read, write, read/write, delete, all, none)</param>
Add comment 177 Plus   /// <param name="lpSecurityAttributes">IntPtr to a 'SECURITY_ATTRIBUTES' structure</param>
Add comment 178 Plus   /// <param name="dwCreationDisposition">Action to take on file or device specified by 'lpFileName' (CREATE_NEW,
Add comment 179 Plus   /// CREATE_ALWAYS, OPEN_ALWAYS, OPEN_EXISTING, TRUNCATE_EXISTING)</param>
Add comment 180 Plus   /// <param name="dwFlagsAndAttributes">File or device attributes and flags (typically FILE_ATTRIBUTE_NORMAL)</param>
Add comment 181 Plus   /// <param name="hTemplateFile">IntPtr to a valid handle to a template file with 'GENERIC_READ' access right</param>
Add comment 182 Plus   /// <returns>IntPtr handle to the 'lpFileName' file or device or 'INVALID_HANDLE_VALUE'</returns>
Add comment 183 Plus   [DllImport("kernel32.dll", SetLastError = true)]
Add comment 184 Plus   public static extern IntPtr
Add comment 185 Plus   CreateFile(string lpFileName,
Add comment 186 Plus   uint dwDesiredAccess,
Add comment 187 Plus   uint dwShareMode,
Add comment 188 Plus   IntPtr lpSecurityAttributes,
Add comment 189 Plus   uint dwCreationDisposition,
Add comment 190 Plus   uint dwFlagsAndAttributes,
Add comment 191 Plus   IntPtr hTemplateFile);
Add comment 192 Plus  
Add comment 193 Plus   /// <summary>
Add comment 194 Plus   /// Closes the file specified by the IntPtr 'hObject'.
Add comment 195 Plus   /// </summary>
Add comment 196 Plus   /// <param name="hObject">IntPtr handle to a file</param>
Add comment 197 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 198 Plus   [DllImport("kernel32.dll", SetLastError = true)]
Add comment 199 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 200 Plus   public static extern bool
Add comment 201 Plus   CloseHandle(
Add comment 202 Plus   IntPtr hObject);
Add comment 203 Plus  
Add comment 204 Plus   /// <summary>
Add comment 205 Plus   /// Fills the 'BY_HANDLE_FILE_INFORMATION' structure for the file specified by 'hFile'.
Add comment 206 Plus   /// </summary>
Add comment 207 Plus   /// <param name="hFile">Fully qualified name of a file</param>
Add comment 208 Plus   /// <param name="lpFileInformation">Out BY_HANDLE_FILE_INFORMATION argument</param>
Add comment 209 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 210 Plus   [DllImport("kernel32.dll", SetLastError = true)]
Add comment 211 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 212 Plus   public static extern bool
Add comment 213 Plus   GetFileInformationByHandle(
Add comment 214 Plus   IntPtr hFile,
Add comment 215 Plus   out BY_HANDLE_FILE_INFORMATION lpFileInformation);
Add comment 216 Plus  
Add comment 217 Plus   /// <summary>
Add comment 218 Plus   /// Deletes the file specified by 'fileName'.
Add comment 219 Plus   /// </summary>
Add comment 220 Plus   /// <param name="fileName">Fully qualified path to the file to delete</param>
Add comment 221 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 222 Plus   [DllImport("kernel32.dll", SetLastError = true)]
Add comment 223 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 224 Plus   public static extern bool DeleteFile(
Add comment 225 Plus   string fileName);
Add comment 226 Plus  
Add comment 227 Plus   /// <summary>
Add comment 228 Plus   /// Read data from the file specified by 'hFile'.
Add comment 229 Plus   /// </summary>
Add comment 230 Plus   /// <param name="hFile">IntPtr handle to the file to read</param>
Add comment 231 Plus   /// <param name="lpBuffer">IntPtr to a buffer of bytes to receive the bytes read from 'hFile'</param>
Add comment 232 Plus   /// <param name="nNumberOfBytesToRead">Number of bytes to read from 'hFile'</param>
Add comment 233 Plus   /// <param name="lpNumberOfBytesRead">Number of bytes read from 'hFile'</param>
Add comment 234 Plus   /// <param name="lpOverlapped">IntPtr to an 'OVERLAPPED' structure</param>
Add comment 235 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 236 Plus   [DllImport("kernel32.dll")]
Add comment 237 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 238 Plus   public static extern bool ReadFile(
Add comment 239 Plus   IntPtr hFile,
Add comment 240 Plus   IntPtr lpBuffer,
Add comment 241 Plus   uint nNumberOfBytesToRead,
Add comment 242 Plus   out uint lpNumberOfBytesRead,
Add comment 243 Plus   IntPtr lpOverlapped);
Add comment 244 Plus  
Add comment 245 Plus   /// <summary>
Add comment 246 Plus   /// Writes the
Add comment 247 Plus   /// </summary>
Add comment 248 Plus   /// <param name="hFile">IntPtr handle to the file to write</param>
Add comment 249 Plus   /// <param name="bytes">IntPtr to a buffer of bytes to write to 'hFile'</param>
Add comment 250 Plus   /// <param name="nNumberOfBytesToWrite">Number of bytes in 'lpBuffer' to write to 'hFile'</param>
Add comment 251 Plus   /// <param name="lpNumberOfBytesWritten">Number of bytes written to 'hFile'</param>
Add comment 252 Plus   /// <param name="overlapped">IntPtr to an 'OVERLAPPED' structure</param>
Add comment 253 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 254 Plus   [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
Add comment 255 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 256 Plus   public static extern bool WriteFile(
Add comment 257 Plus   IntPtr hFile,
Add comment 258 Plus   IntPtr bytes,
Add comment 259 Plus   uint nNumberOfBytesToWrite,
Add comment 260 Plus   out uint lpNumberOfBytesWritten,
Add comment 261 Plus   int overlapped);
Add comment 262 Plus  
Add comment 263 Plus   /// <summary>
Add comment 264 Plus   /// Writes the data in 'lpBuffer' to the file specified by 'hFile'.
Add comment 265 Plus   /// </summary>
Add comment 266 Plus   /// <param name="hFile">IntPtr handle to file to write</param>
Add comment 267 Plus   /// <param name="lpBuffer">Buffer of bytes to write to file 'hFile'</param>
Add comment 268 Plus   /// <param name="nNumberOfBytesToWrite">Number of bytes in 'lpBuffer' to write to 'hFile'</param>
Add comment 269 Plus   /// <param name="lpNumberOfBytesWritten">Number of bytes written to 'hFile'</param>
Add comment 270 Plus   /// <param name="overlapped">IntPtr to an 'OVERLAPPED' structure</param>
Add comment 271 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 272 Plus   [DllImport("kernel32.dll", SetLastError = true, CharSet = CharSet.Unicode)]
Add comment 273 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 274 Plus   public static extern bool WriteFile(
Add comment 275 Plus   IntPtr hFile,
Add comment 276 Plus   byte[] lpBuffer,
Add comment 277 Plus   uint nNumberOfBytesToWrite,
Add comment 278 Plus   out uint lpNumberOfBytesWritten,
Add comment 279 Plus   int overlapped);
Add comment 280 Plus  
Add comment 281 Plus   /// <summary>
Add comment 282 Plus   /// Sends the 'dwIoControlCode' to the device specified by 'hDevice'.
Add comment 283 Plus   /// </summary>
Add comment 284 Plus   /// <param name="hDevice">IntPtr handle to the device to receive 'dwIoControlCode'</param>
Add comment 285 Plus   /// <param name="dwIoControlCode">Device IO Control Code to send</param>
Add comment 286 Plus   /// <param name="lpInBuffer">Input buffer if required</param>
Add comment 287 Plus   /// <param name="nInBufferSize">Size of input buffer</param>
Add comment 288 Plus   /// <param name="lpOutBuffer">Output buffer if required</param>
Add comment 289 Plus   /// <param name="nOutBufferSize">Size of output buffer</param>
Add comment 290 Plus   /// <param name="lpBytesReturned">Number of bytes returned in output buffer</param>
Add comment 291 Plus   /// <param name="lpOverlapped">IntPtr to an 'OVERLAPPED' structure</param>
Add comment 292 Plus   /// <returns>'true' if successful, otherwise 'false'</returns>
Add comment 293 Plus   [DllImport("kernel32.dll", ExactSpelling = true, SetLastError = true, CharSet = CharSet.Auto)]
Add comment 294 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 295 Plus   public static extern bool DeviceIoControl(
Add comment 296 Plus   IntPtr hDevice,
Add comment 297 Plus   UInt32 dwIoControlCode,
Add comment 298 Plus   IntPtr lpInBuffer,
Add comment 299 Plus   Int32 nInBufferSize,
Add comment 300 Plus   out USN_JOURNAL_DATA lpOutBuffer,
Add comment 301 Plus   Int32 nOutBufferSize,
Add comment 302 Plus   out uint lpBytesReturned,
Add comment 303 Plus   IntPtr lpOverlapped);
Add comment 304 Plus  
Add comment 305 Plus   /// <summary>
Add comment 306 Plus   /// Sends the control code 'dwIoControlCode' to the device driver specified by 'hDevice'.
Add comment 307 Plus   /// </summary>
Add comment 308 Plus   /// <param name="hDevice">IntPtr handle to the device to receive 'dwIoControlCode</param>
Add comment 309 Plus   /// <param name="dwIoControlCode">Device IO Control Code to send</param>
Add comment 310 Plus   /// <param name="lpInBuffer">Input buffer if required</param>
Add comment 311 Plus   /// <param name="nInBufferSize">Size of input buffer </param>
Add comment 312 Plus   /// <param name="lpOutBuffer">Output buffer if required</param>
Add comment 313 Plus   /// <param name="nOutBufferSize">Size of output buffer</param>
Add comment 314 Plus   /// <param name="lpBytesReturned">Number of bytes returned</param>
Add comment 315 Plus   /// <param name="lpOverlapped">Pointer to an 'OVERLAPPED' struture</param>
Add comment 316 Plus   /// <returns></returns>
Add comment 317 Plus   [DllImport("kernel32.dll", ExactSpelling = true, SetLastError = true, CharSet = CharSet.Auto)]
Add comment 318 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 319 Plus   public static extern bool DeviceIoControl(
Add comment 320 Plus   IntPtr hDevice,
Add comment 321 Plus   UInt32 dwIoControlCode,
Add comment 322 Plus   IntPtr lpInBuffer,
Add comment 323 Plus   Int32 nInBufferSize,
Add comment 324 Plus   IntPtr lpOutBuffer,
Add comment 325 Plus   Int32 nOutBufferSize,
Add comment 326 Plus   out uint lpBytesReturned,
Add comment 327 Plus   IntPtr lpOverlapped);
Add comment 328 Plus  
Add comment 329 Plus   /// <summary>
Add comment 330 Plus   /// Sets the number of bytes specified by 'size' of the memory associated with the argument 'ptr'
Add comment 331 Plus   /// to zero.
Add comment 332 Plus   /// </summary>
Add comment 333 Plus   /// <param name="ptr"></param>
Add comment 334 Plus   /// <param name="size"></param>
Add comment 335 Plus   [DllImport("kernel32.dll")]
Add comment 336 Plus   public static extern void ZeroMemory(IntPtr ptr, int size);
Add comment 337 Plus  
Add comment 338 Plus   /// <summary>
Add comment 339 Plus   /// Retrieves the cursor's position, in screen coordinates.
Add comment 340 Plus   /// </summary>
Add comment 341 Plus   /// <param name="pt">Pointer to a POINT structure that receives the screen coordinates of the cursor</param>
Add comment 342 Plus   /// <returns>Returns nonzero if successful or zero otherwise. To get extended error information, call GetLastError.</returns>
Add comment 343 Plus   [DllImport("user32.dll", CharSet = CharSet.Auto)]
Add comment 344 Plus   [return: MarshalAs(UnmanagedType.Bool)]
Add comment 345 Plus   public static extern bool GetCursorPos(out POINT pt);
Add comment 346 Plus  
Add comment 347 Plus   /// <summary>
Add comment 348 Plus   /// retrieves information about the specified window. The function also retrieves the 32-bit (long)
Add comment 349 Plus   /// value at the specified offset into the extra window memory.
Add comment 350 Plus   /// </summary>
Add comment 351 Plus   /// <param name="hWnd">Handle to the window and, indirectly, the class to which the window belongs</param>
Add comment 352 Plus   /// <param name="nIndex">the zero-based offset to the value to be retrieved</param>
Add comment 353 Plus   /// <returns>If the function succeeds, the return value is the requested 32-bit value.
Add comment 354 Plus   /// If the function fails, the return value is zero. To get extended error information, call GetLastError
Add comment 355 Plus   ///</returns>
Add comment 356 Plus   [DllImport("user32.dll", CharSet = CharSet.Auto)]
Add comment 357 Plus   public static extern Int32 GetWindowLong(IntPtr hWnd, Int32 nIndex);
Add comment 358 Plus  
Add comment 359 Plus   /// <summary>
Add comment 360 Plus   /// changes an attribute of the specified window. The function also sets the 32-bit (long) value at
Add comment 361 Plus   /// the specified offset into the extra window memory
Add comment 362 Plus   /// </summary>
Add comment 363 Plus   /// <param name="hWnd">Handle to the window and, indirectly, the class to which the window belongs</param>
Add comment 364 Plus   /// <param name="nIndex">the zero-based offset to the value to be set</param>
Add comment 365 Plus   /// <param name="newVal">the replacement value</param>
Add comment 366 Plus   /// <returns>If the function succeeds, the return value is the previous value of the specified 32-bit
Add comment 367 Plus   /// integer. If the function fails, the return value is zero. To get extended error information, call GetLastError.
Add comment 368 Plus   /// </returns>
Add comment 369 Plus   [DllImport("user32.dll", CharSet = CharSet.Auto)]
Add comment 370 Plus   public static extern Int32 SetWindowLong(IntPtr hWnd, Int32 nIndex, Int32 newVal);
Add comment 371 Plus  
Add comment 372 Plus   /// <summary>
Add comment 373 Plus   /// Creates a new file or directory, or opens an existing file, device, directory, or volume
Add comment 374 Plus   /// </summary>
Add comment 375 Plus   /// <param name="handle">A pointer to a variable that receives the file handle if the call is successful (out)</param>
Add comment 376 Plus   /// <param name="access">ACCESS_MASK value that expresses the type of access that the caller requires to the file or directory (in)</param>
Add comment 377 Plus   /// <param name="objectAttributes">A pointer to a structure already initialized with InitializeObjectAttributes (in)</param>
Add comment 378 Plus   /// <param name="ioStatus">A pointer to a variable that receives the final completion status and information about the requested operation (out)</param>
Add comment 379 Plus   /// <param name="allocSize">The initial allocation size in bytes for the file (in)(optional)</param>
Add comment 380 Plus   /// <param name="fileAttributes">file attributes (in)</param>
Add comment 381 Plus   /// <param name="share">type of share access that the caller would like to use in the file (in)</param>
Add comment 382 Plus   /// <param name="createDisposition">what to do, depending on whether the file already exists (in)</param>
Add comment 383 Plus   /// <param name="createOptions">options to be applied when creating or opening the file (in)</param>
Add comment 384 Plus   /// <param name="eaBuffer">Pointer to an EA buffer used to pass extended attributes (in)</param>
Add comment 385 Plus   /// <param name="eaLength">Length of the EA buffer</param>
Add comment 386 Plus   /// <returns>either STATUS_SUCCESS or an appropriate error status. If it returns an error status, the caller can find more information about the cause of the failure by checking the IoStatusBlock</returns>
Add comment 387 Plus   [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = true)]
Add comment 388 Plus   public static extern int NtCreateFile(
Add comment 389 Plus   ref IntPtr handle,
Add comment 390 Plus   FileAccess access,
Add comment 391 Plus   ref OBJECT_ATTRIBUTES objectAttributes,
Add comment 392 Plus   ref IO_STATUS_BLOCK ioStatus,
Add comment 393 Plus   ref long allocSize,
Add comment 394 Plus   uint fileAttributes,
Add comment 395 Plus   FileShare share,
Add comment 396 Plus   uint createDisposition,
Add comment 397 Plus   uint createOptions,
Add comment 398 Plus   IntPtr eaBuffer,
Add comment 399 Plus   uint eaLength);
Add comment 400 Plus  
Add comment 401 Plus   /// <summary>
Add comment 402 Plus   ///
Add comment 403 Plus   /// </summary>
Add comment 404 Plus   /// <param name="fileHandle"></param>
Add comment 405 Plus   /// <param name="IoStatusBlock"></param>
Add comment 406 Plus   /// <param name="pInfoBlock"></param>
Add comment 407 Plus   /// <param name="length"></param>
Add comment 408 Plus   /// <param name="fileInformation"></param>
Add comment 409 Plus   /// <returns></returns>
Add comment 410 Plus   [DllImport("ntdll.dll", ExactSpelling = true, SetLastError = true)]
Add comment 411 Plus   public static extern int NtQueryInformationFile(
Add comment 412 Plus   IntPtr fileHandle,
Add comment 413 Plus   ref IO_STATUS_BLOCK IoStatusBlock,
Add comment 414 Plus   IntPtr pInfoBlock,
Add comment 415 Plus   uint length,
Add comment 416 Plus   FILE_INFORMATION_CLASS fileInformation);
Add comment 417 Plus  
Add comment 418 Plus   #endregion
Add comment 419 Plus  
Add comment 420 Plus   #region structures
Add comment 421 Plus  
Add comment 422 Plus   /// <summary>
Add comment 423 Plus   /// By Handle File Information structure, contains File Attributes(32bits), Creation Time(FILETIME),
Add comment 424 Plus   /// Last Access Time(FILETIME), Last Write Time(FILETIME), Volume Serial Number(32bits),
Add comment 425 Plus   /// File Size High(32bits), File Size Low(32bits), Number of Links(32bits), File Index High(32bits),
Add comment 426 Plus   /// File Index Low(32bits).
Add comment 427 Plus   /// </summary>
Add comment 428 Plus   [StructLayout(LayoutKind.Sequential, Pack = 1)]
Add comment 429 Plus   public struct BY_HANDLE_FILE_INFORMATION
Add comment 430 Plus   {
Add comment 431 Plus   public uint FileAttributes;
Add comment 432 Plus   public FILETIME CreationTime;
Add comment 433 Plus   public FILETIME LastAccessTime;
Add comment 434 Plus   public FILETIME LastWriteTime;
Add comment 435 Plus   public uint VolumeSerialNumber;
Add comment 436 Plus   public uint FileSizeHigh;
Add comment 437 Plus   public uint FileSizeLow;
Add comment 438 Plus   public uint NumberOfLinks;
Add comment 439 Plus   public uint FileIndexHigh;
Add comment 440 Plus   public uint FileIndexLow;
Add comment 441 Plus   }
Add comment 442 Plus  
Add comment 443 Plus   /// <summary>
Add comment 444 Plus   /// USN Journal Data structure, contains USN Journal ID(64bits), First USN(64bits), Next USN(64bits),
Add comment 445 Plus   /// Lowest Valid USN(64bits), Max USN(64bits), Maximum Size(64bits) and Allocation Delta(64bits).
Add comment 446 Plus   /// </summary>
Add comment 447 Plus   [StructLayout(LayoutKind.Sequential, Pack = 1)]
Add comment 448 Plus   public struct USN_JOURNAL_DATA
Add comment 449 Plus   {
Add comment 450 Plus   public UInt64 UsnJournalID;
Add comment 451 Plus   public Int64 FirstUsn;
Add comment 452 Plus   public Int64 NextUsn;
Add comment 453 Plus   public Int64 LowestValidUsn;
Add comment 454 Plus   public Int64 MaxUsn;
Add comment 455 Plus   public UInt64 MaximumSize;
Add comment 456 Plus   public UInt64 AllocationDelta;
Add comment 457 Plus   }
Add comment 458 Plus  
Add comment 459 Plus   /// <summary>
Add comment 460 Plus   /// MFT Enum Data structure, contains Start File Reference Number(64bits), Low USN(64bits),
Add comment 461 Plus   /// High USN(64bits).
Add comment 462 Plus   /// </summary>
Add comment 463 Plus   [StructLayout(LayoutKind.Sequential, Pack = 1)]
Add comment 464 Plus   public struct MFT_ENUM_DATA
Add comment 465 Plus   {
Add comment 466 Plus   public UInt64 StartFileReferenceNumber;
Add comment 467 Plus   public Int64 LowUsn;
Add comment 468 Plus   public Int64 HighUsn;
Add comment 469 Plus   }
Add comment 470 Plus  
Add comment 471 Plus   /// <summary>
Add comment 472 Plus   /// Create USN Journal Data structure, contains Maximum Size(64bits) and Allocation Delta(64(bits).
Add comment 473 Plus   /// </summary>
Add comment 474 Plus   [StructLayout(LayoutKind.Sequential, Pack = 1)]
Add comment 475 Plus   public struct CREATE_USN_JOURNAL_DATA
Add comment 476 Plus   {
Add comment 477 Plus   public UInt64 MaximumSize;
Add comment 478 Plus   public UInt64 AllocationDelta;
Add comment 479 Plus   }
Add comment 480 Plus  
Add comment 481 Plus   /// <summary>
Add comment 482 Plus   /// Create USN Journal Data structure, contains Maximum Size(64bits) and Allocation Delta(64(bits).
Add comment 483 Plus   /// </summary>
Add comment 484 Plus   [StructLayout(LayoutKind.Sequential, Pack = 1)]
Add comment 485 Plus   public struct DELETE_USN_JOURNAL_DATA
Add comment 486 Plus   {
Add comment 487 Plus   public UInt64 UsnJournalID;
Add comment 488 Plus   public UInt32 DeleteFlags;
Add comment 489 Plus   public UInt32 Reserved;
Add comment 490 Plus   }
Add comment 491 Plus  
Add comment 492 Plus   /// <summary>
Add comment 493 Plus   /// Contains the USN Record Length(32bits), USN(64bits), File Reference Number(64bits),
Add comment 494 Plus   /// Parent File Reference Number(64bits), Reason Code(32bits), File Attributes(32bits),
Add comment 495 Plus   /// File Name Length(32bits), the File Name Offset(32bits) and the File Name.
Add comment 496 Plus   /// </summary>
Add comment 497 Plus   public class UsnEntry : IComparable<UsnEntry>
Add comment 498 Plus   {
Add comment 499 Plus   private const int FR_OFFSET = 8;
Resources.Designer.cs
/BExplorer/BetterExplorer/Properties/Resources.Designer.cs
/BExplorer/BetterExplorer/Properties/Resources.Designer.cs
Settings.Designer.cs
/BExplorer/BetterExplorer/Properties/Settings.Designer.cs
/BExplorer/BetterExplorer/Properties/Settings.Designer.cs
app.config
/BExplorer/BetterExplorer/app.config-1+1
/BExplorer/BetterExplorer/app.config
Add comment 1 <?xml version="1.0"?>
Add comment 2 <configuration>
Add comment 3 Minus  <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
Add comment 3 Plus  <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Add comment 4
BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj
FolderSizeWindow.xaml.cs
/BExplorer/BetterExplorer/FolderSizeWindow.xaml.cs
/BExplorer/BetterExplorer/FolderSizeWindow.xaml.cs
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs
StartIt.exe
/BExplorer/BetterExplorer/StartIt.exe
/BExplorer/BetterExplorer/StartIt.exe
Fluent dotNET 4.0.csproj
/fluent_72f5e3ec252b/Fluent/Fluent/Fluent dotNET 4.0.csproj
/fluent_72f5e3ec252b/Fluent/Fluent/Fluent dotNET 4.0.csproj
ImDiskNet.vbproj
/ImDiskNet/ImDiskNet.vbproj
/ImDiskNet/ImDiskNet.vbproj
ShellFolderItems.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellFolderItems.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellFolderItems.cs
ShellLibrary.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellLibrary.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellLibrary.cs
ShellLink.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellLink.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellLink.cs
ShellObject.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellObject.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellObject.cs
ShellSearchFolder.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellSearchFolder.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellSearchFolder.cs
ShellThumbnail.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellThumbnail.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Common/ShellThumbnail.cs
ExplorerBrowser.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowser.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowser.cs
ExplorerBrowserContentOptions.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowserContentOptions.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ExplorerBrowser/ExplorerBrowserContentOptions.cs
FileOperation.xaml.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/FileOperations/FileOperation.xaml.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/FileOperations/FileOperation.xaml.cs
ExplorerBrowserCOMInterfaces.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Interop/ExplorerBrowser/ExplorerBrowserCOMInterfaces.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Interop/ExplorerBrowser/ExplorerBrowserCOMInterfaces.cs
LocalizedMessages.Designer.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Resources/LocalizedMessages.Designer.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Resources/LocalizedMessages.Designer.cs
ShellEnums.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Windows API/ShellEnums.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Windows API/ShellEnums.cs
ShellLink.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Windows API/ShellLink.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Windows API/ShellLink.cs
ContextShellMenu.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ContextShellMenu.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/ContextShellMenu.cs
Shell.csproj
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Shell.csproj
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/Shell.csproj
SysImageList.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/SysImageList.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/SysImageList.cs
WindowsAPI.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/WindowsAPI.cs
/Windows API Code Pack 1.1/source/WindowsAPICodePack/Shell/WindowsAPI.cs
Resources.Designer.cs
/WpfControlLibrary1/Properties/Resources.Designer.cs
/WpfControlLibrary1/Properties/Resources.Designer.cs
Settings.Designer.cs
/WpfControlLibrary1/Properties/Settings.Designer.cs
/WpfControlLibrary1/Properties/Settings.Designer.cs
BetterExplorerControls.csproj
/WpfControlLibrary1/BetterExplorerControls.csproj
/WpfControlLibrary1/BetterExplorerControls.csproj