Clean up and fixed part of Undo Closing Tabs
292fb149
Aaron Campf
committed
44 changed files
AsyncContext.cs
/BEHelper/AsyncContext.cs-33+15
/BEHelper/AsyncContext.cs
Add comment 1 Minus  using System;
Add comment 2 Minus  using System.Collections.Generic;
Add comment 3 Minus  using System.Linq;
Add comment 4 1 using System.Threading;
Add comment 5 2
Add comment 6 Minus  namespace BEHelper
Add comment 7 Minus  {
Add comment 8 Minus   public class AsyncContext : IAsyncContext
Add comment 9 Minus   {
Add comment 3 Plus  namespace BEHelper {
Add comment 4 Plus  
Add comment 5 Plus   public class AsyncContext : IAsyncContext {
Add comment 10 6 private readonly SynchronizationContext _asynchronizationContext;
Add comment 11 7
Add comment 12 Minus   ///
Add comment 13 Minus   /// Constructor - Save the context of the creator/current thread
Add comment 14 Minus   ///
Add comment 15 Minus   public AsyncContext()
Add comment 16 Minus   {
Add comment 17 Minus   _asynchronizationContext = SynchronizationContext.Current;
Add comment 18 Minus   }
Add comment 8 Plus   /// <summary>Get the context of the creator thread</summary>
Add comment 9 Plus   public SynchronizationContext AsynchronizationContext { get { return _asynchronizationContext; } }
Add comment 19 10
Add comment 20 Minus   ///
Add comment 21 Minus   /// Get the context of the creator thread
Add comment 22 Minus   ///
Add comment 23 Minus   public SynchronizationContext AsynchronizationContext
Add comment 24 Minus   {
Add comment 25 Minus   get { return _asynchronizationContext; }
Add comment 26 Minus   }
Add comment 11 Plus   /// <summary>Test if the current executing thread is the creator thread</summary>
Add comment 12 Plus   public bool IsAsyncCreatorThread { get { return SynchronizationContext.Current == AsynchronizationContext; } }
Add comment 27 13
Add comment 28 Minus   ///
Add comment 29 Minus   /// Test if the current executing thread is the creator thread
Add comment 30 Minus   ///
Add comment 31 Minus   public bool IsAsyncCreatorThread
Add comment 32 Minus   {
Add comment 33 Minus   get { return SynchronizationContext.Current == AsynchronizationContext; }
Add comment 14 Plus   /// <summary>Constructor - Save the context of the creator/current thread</summary>
Add comment 15 Plus   public AsyncContext() {
Add comment 16 Plus   _asynchronizationContext = SynchronizationContext.Current;
Add comment 34 17 }
Add comment 35 18
Add comment 36 Minus   ///
Add comment 19 Plus   /// <summary>
Add comment 37 20 /// Post a call to the specified method on the creator thread
Add comment 38 Minus   ///
Add comment 39 Minus   /// Method that is to be called
Add comment 40 Minus   /// Method parameter/state
Add comment 41 Minus   public void AsyncPost(SendOrPostCallback callback, object state)
Add comment 42 Minus   {
Add comment 21 Plus   /// </summary>
Add comment 22 Plus   /// <param name="callback">Method that is to be called</param>
Add comment 23 Plus   /// <param name="state">Method parameter/state</param>
Add comment 24 Plus   public void AsyncPost(SendOrPostCallback callback, object state) {
Add comment 43 25 if (IsAsyncCreatorThread)
Add comment 44 26 callback(state); // Call the method directly
Add comment 45 27 else
AsyncObservableCollection.cs
/BEHelper/AsyncObservableCollection.cs-13+6
/BEHelper/AsyncObservableCollection.cs
Add comment 6 using System.Linq;
Add comment 7 using System.Threading;
Add comment 8
Add comment 9 Minus  namespace BEHelper
Add comment 10 Minus  {
Add comment 11 Minus   public class AsyncObservableCollection<T> : ObservableCollection<T>, IAsyncContext
Add comment 12 Minus   {
Add comment 9 Plus  namespace BEHelper {
Add comment 10 Plus   public class AsyncObservableCollection<T> : ObservableCollection<T>, IAsyncContext {
Add comment 13 11 private readonly AsyncContext _asyncContext = new AsyncContext();
Add comment 14 12
Add comment 15 13 #region IAsyncContext Members
Add comment 19 17 #endregion
Add comment 20 18
Add comment 21 19 public AsyncObservableCollection() { }
Add comment 22 Minus  
Add comment 23 20 public AsyncObservableCollection(IEnumerable<T> list) : base(list) { }
Add comment 24 21 public AsyncObservableCollection(List<T> list) : base(list) { }
Add comment 25 22
Add comment 26 Minus   protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e)
Add comment 27 Minus   {
Add comment 23 Plus   protected override void OnCollectionChanged(NotifyCollectionChangedEventArgs e) {
Add comment 28 24 AsyncPost(RaiseCollectionChanged, e);
Add comment 29 25 }
Add comment 30 26
Add comment 31 Minus   private void RaiseCollectionChanged(object param)
Add comment 32 Minus   {
Add comment 27 Plus   private void RaiseCollectionChanged(object param) {
Add comment 33 28 base.OnCollectionChanged((NotifyCollectionChangedEventArgs)param);
Add comment 34 29 }
Add comment 35 30
Add comment 36 Minus   protected override void OnPropertyChanged(PropertyChangedEventArgs e)
Add comment 37 Minus   {
Add comment 31 Plus   protected override void OnPropertyChanged(PropertyChangedEventArgs e) {
Add comment 38 32 AsyncPost(RaisePropertyChanged, e);
Add comment 39 33 }
Add comment 40 34
Add comment 41 Minus   private void RaisePropertyChanged(object param)
Add comment 42 Minus   {
Add comment 35 Plus   private void RaisePropertyChanged(object param) {
Add comment 43 36 base.OnPropertyChanged((PropertyChangedEventArgs)param);
Add comment 44 37 }
Add comment 45 38 }
IAsyncContext.cs
/BEHelper/IAsyncContext.cs-4+2
/BEHelper/IAsyncContext.cs
Add comment 3 using System.Linq;
Add comment 4 using System.Threading;
Add comment 5
Add comment 6 Minus  namespace BEHelper
Add comment 7 Minus  {
Add comment 8 Minus   public interface IAsyncContext
Add comment 9 Minus   {
Add comment 6 Plus  namespace BEHelper {
Add comment 7 Plus   public interface IAsyncContext {
Add comment 10 8 /// <summary>
Add comment 11 9 /// Get the context of the creator thread
Add comment 12 10 /// </summary>
NoFlickerWindowsFormsHost.cs
/BEHelper/NoFlickerWindowsFormsHost.cs-8+4
/BEHelper/NoFlickerWindowsFormsHost.cs
Add comment 7 using System.Windows;
Add comment 8 using System.Windows.Forms.Integration;
Add comment 9
Add comment 10 Minus  namespace BEHelper
Add comment 11 Minus  {
Add comment 12 Minus   public class NoFlickerWindowsFormsHost : WindowsFormsHost
Add comment 13 Minus   {
Add comment 10 Plus  namespace BEHelper {
Add comment 11 Plus   public class NoFlickerWindowsFormsHost : WindowsFormsHost {
Add comment 14 12 const uint SWP_NOZORDER = 0x0004;
Add comment 15 13 const uint SWP_NOACTIVATE = 0x0010;
Add comment 16 14 const uint SWP_ASYNCWINDOWPOS = 0x4000;
Add comment 19 17 extern static bool SetWindowPos(IntPtr hWnd, IntPtr hWndInsertAfter, int X, int Y, int cx, int cy, uint uFlags);
Add comment 20 18
Add comment 21 19
Add comment 22 Minus   protected override void OnWindowPositionChanged(Rect rcBoundingBox)
Add comment 23 Minus   {
Add comment 24 Minus   if (Handle != IntPtr.Zero)
Add comment 25 Minus   {
Add comment 20 Plus   protected override void OnWindowPositionChanged(Rect rcBoundingBox) {
Add comment 21 Plus   if (Handle != IntPtr.Zero) {
Add comment 26 22 SetWindowPos(Handle,
Add comment 27 23 IntPtr.Zero,
Add comment 28 24 (int)rcBoundingBox.X,
TransPicBox.cs
/BEHelper/TransPicBox.cs-53+33
/BEHelper/TransPicBox.cs
Add comment 1 using System;
Add comment 2 Minus  using System.Collections.Generic;
Add comment 3 2 using System.Drawing;
Add comment 4 3 using System.Drawing.Drawing2D;
Add comment 5 Minus  using System.Linq;
Add comment 6 Minus  using System.Text;
Add comment 7 4 using System.Windows.Forms;
Add comment 8 5
Add comment 9 Minus  namespace BEHelper
Add comment 10 Minus  {
Add comment 11 Minus   public class TransPicBox : Control
Add comment 12 Minus   {
Add comment 13 Minus   public TransPicBox()
Add comment 14 Minus   {
Add comment 6 Plus  namespace BEHelper {
Add comment 7 Plus  
Add comment 8 Plus   public class TransPicBox : Control {
Add comment 9 Plus   public Bitmap Image { get; set; }
Add comment 10 Plus  
Add comment 11 Plus   #region Constructors
Add comment 12 Plus  
Add comment 13 Plus   public TransPicBox() {
Add comment 15 14 this.DoubleBuffered = true;
Add comment 16 15 this.SetStyle(ControlStyles.UserPaint |
Add comment 17 16 ControlStyles.AllPaintingInWmPaint |
Add comment 18 17 ControlStyles.ResizeRedraw |
Add comment 19 18 ControlStyles.ContainerControl |
Add comment 20 19 ControlStyles.OptimizedDoubleBuffer |
Add comment 21 Minus   ControlStyles.SupportsTransparentBackColor
Add comment 22 Minus   , true);
Add comment 20 Plus   ControlStyles.SupportsTransparentBackColor,
Add comment 21 Plus   true);
Add comment 23 22 }
Add comment 24 Minus   public TransPicBox(string text)
Add comment 25 Minus   : base(text)
Add comment 26 Minus   {
Add comment 27 23
Add comment 24 Plus   public TransPicBox(string text)
Add comment 25 Plus   : base(text) {
Add comment 28 26 }
Add comment 29 Minus   public TransPicBox(string text, int left, int top, int width, int height)
Add comment 30 Minus   : base(text, left, top, width, height)
Add comment 31 Minus   {
Add comment 32 27
Add comment 28 Plus   public TransPicBox(string text, int left, int top, int width, int height)
Add comment 29 Plus   : base(text, left, top, width, height) {
Add comment 33 30 }
Add comment 34 Minus   public TransPicBox(Control parent, string text)
Add comment 35 Minus   : base(parent, text)
Add comment 36 Minus   {
Add comment 37 31
Add comment 32 Plus   public TransPicBox(Control parent, string text)
Add comment 33 Plus   : base(parent, text) {
Add comment 38 34 }
Add comment 39 Minus   public TransPicBox(Control parent, string text, int left, int top, int width, int height)
Add comment 40 Minus   : base(parent, text, left, top, width, height)
Add comment 41 Minus   {
Add comment 42 35
Add comment 36 Plus   public TransPicBox(Control parent, string text, int left, int top, int width, int height)
Add comment 37 Plus   : base(parent, text, left, top, width, height) {
Add comment 43 38 }
Add comment 44 39
Add comment 40 Plus   #endregion
Add comment 45 41
Add comment 46 Minus   private static Bitmap resizeImage(Bitmap imgToResize, Size size)
Add comment 47 Minus   {
Add comment 48 Minus   int sourceWidth = imgToResize.Width;
Add comment 49 Minus   int sourceHeight = imgToResize.Height;
Add comment 50 Minus  
Add comment 51 Minus   float nPercent = 0;
Add comment 52 Minus   float nPercentW = 0;
Add comment 53 Minus   float nPercentH = 0;
Add comment 42 Plus   private static Bitmap resizeImage(Bitmap imgToResize, Size size) {
Add comment 43 Plus   float nPercent = 0, nPercentW = 0, nPercentH = 0;
Add comment 44 Plus   int sourceWidth = imgToResize.Width, sourceHeight = imgToResize.Height;
Add comment 54 45
Add comment 55 46 nPercentW = ((float)size.Width / (float)sourceWidth);
Add comment 56 47 nPercentH = ((float)size.Height / (float)sourceHeight);
Add comment 57 Minus  
Add comment 58 Minus   if (nPercentH < nPercentW)
Add comment 59 Minus   nPercent = nPercentH;
Add comment 60 Minus   else
Add comment 61 Minus   nPercent = nPercentW;
Add comment 48 Plus   nPercent = nPercentH < nPercentW ? nPercentH : nPercentW;
Add comment 62 49
Add comment 63 50 int destWidth = (int)(sourceWidth * nPercent);
Add comment 64 51 int destHeight = (int)(sourceHeight * nPercent);
Add comment 73 60 return b;
Add comment 74 61 }
Add comment 75 62
Add comment 76 Minus  
Add comment 77 Minus   public Bitmap Image { get; set; }
Add comment 78 Minus  
Add comment 79 Minus   protected override CreateParams CreateParams
Add comment 80 Minus   {
Add comment 81 Minus   get
Add comment 82 Minus   {
Add comment 63 Plus   protected override CreateParams CreateParams {
Add comment 64 Plus   get {
Add comment 83 65 CreateParams cp = base.CreateParams;
Add comment 84 66 cp.ExStyle |= 0x02000000;
Add comment 85 67 return cp;
Add comment 86 68 }
Add comment 87 69 }
Add comment 88 Minus   protected override void OnResize(EventArgs e)
Add comment 89 Minus   {
Add comment 70 Plus  
Add comment 71 Plus   protected override void OnResize(EventArgs e) {
Add comment 90 72 this.Update();
Add comment 91 73 base.OnResize(e);
Add comment 92 74 }
Add comment 93 Minus   protected override void OnSizeChanged(EventArgs e)
Add comment 94 Minus   {
Add comment 75 Plus  
Add comment 76 Plus   protected override void OnSizeChanged(EventArgs e) {
Add comment 95 77 this.Update();
Add comment 96 78 base.OnSizeChanged(e);
Add comment 97 79 }
Add comment 98 Minus   protected override void OnPaint(PaintEventArgs e)
Add comment 99 Minus   {
Add comment 100 Minus   if (this.Image != null)
Add comment 101 Minus   {
Add comment 80 Plus  
Add comment 81 Plus   protected override void OnPaint(PaintEventArgs e) {
Add comment 82 Plus   if (this.Image != null) {
Add comment 102 83 var res = resizeImage(this.Image, this.ClientSize);
Add comment 103 84 e.Graphics.FillRectangle(SystemBrushes.Window, this.ClientRectangle);
Add comment 104 85 e.Graphics.DrawImage(res, (this.Size.Width - res.Width) / 2, (this.Size.Height - res.Height) / 2);
Add comment 105 86 }
Add comment 106 87 }
Add comment 107 Minus   protected override void OnPaintBackground(PaintEventArgs e)
Add comment 108 Minus   {
Add comment 109 88
Add comment 89 Plus   protected override void OnPaintBackground(PaintEventArgs e) {
Add comment 110 90 }
Add comment 111 91 }
Add comment 112 92 }
NtfsUsnJournal.cs
/BExplorer/BetterExplorer/__Obsolete/MFTScanning/NtfsUsnJournal.cs+1022
/BExplorer/BetterExplorer/__Obsolete/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   [Obsolete("Never used", true)]
Add comment 13 Plus   public class NtfsUsnJournal : IDisposable {
Add comment 14 Plus   #region enum(s)
Add comment 15 Plus   public enum UsnJournalReturnCode {
Add comment 16 Plus   INVALID_HANDLE_VALUE = -1,
Add comment 17 Plus   USN_JOURNAL_SUCCESS = 0,
Add comment 18 Plus   ERROR_INVALID_FUNCTION = 1,
Add comment 19 Plus   ERROR_FILE_NOT_FOUND = 2,
Add comment 20 Plus   ERROR_PATH_NOT_FOUND = 3,
Add comment 21 Plus   ERROR_TOO_MANY_OPEN_FILES = 4,
Add comment 22 Plus   ERROR_ACCESS_DENIED = 5,
Add comment 23 Plus   ERROR_INVALID_HANDLE = 6,
Add comment 24 Plus   ERROR_INVALID_DATA = 13,
Add comment 25 Plus   ERROR_HANDLE_EOF = 38,
Add comment 26 Plus   ERROR_NOT_SUPPORTED = 50,
Add comment 27 Plus   ERROR_INVALID_PARAMETER = 87,
Add comment 28 Plus   ERROR_JOURNAL_DELETE_IN_PROGRESS = 1178,
Add comment 29 Plus   USN_JOURNAL_NOT_ACTIVE = 1179,
Add comment 30 Plus   ERROR_JOURNAL_ENTRY_DELETED = 1181,
Add comment 31 Plus   ERROR_INVALID_USER_BUFFER = 1784,
Add comment 32 Plus   USN_JOURNAL_INVALID = 17001,
Add comment 33 Plus   VOLUME_NOT_NTFS = 17003,
Add comment 34 Plus   INVALID_FILE_REFERENCE_NUMBER = 17004,
Add comment 35 Plus   USN_JOURNAL_ERROR = 17005
Add comment 36 Plus   }
Add comment 37 Plus  
Add comment 38 Plus   public enum UsnReasonCode {
Add comment 39 Plus   USN_REASON_DATA_OVERWRITE = 0x00000001,
Add comment 40 Plus   USN_REASON_DATA_EXTEND = 0x00000002,
Add comment 41 Plus   USN_REASON_DATA_TRUNCATION = 0x00000004,
Add comment 42 Plus   USN_REASON_NAMED_DATA_OVERWRITE = 0x00000010,
Add comment 43 Plus   USN_REASON_NAMED_DATA_EXTEND = 0x00000020,
Add comment 44 Plus   USN_REASON_NAMED_DATA_TRUNCATION = 0x00000040,
Add comment 45 Plus   USN_REASON_FILE_CREATE = 0x00000100,
Add comment 46 Plus   USN_REASON_FILE_DELETE = 0x00000200,
Add comment 47 Plus   USN_REASON_EA_CHANGE = 0x00000400,
Add comment 48 Plus   USN_REASON_SECURITY_CHANGE = 0x00000800,
Add comment 49 Plus   USN_REASON_RENAME_OLD_NAME = 0x00001000,
Add comment 50 Plus   USN_REASON_RENAME_NEW_NAME = 0x00002000,
Add comment 51 Plus   USN_REASON_INDEXABLE_CHANGE = 0x00004000,
Add comment 52 Plus   USN_REASON_BASIC_INFO_CHANGE = 0x00008000,
Add comment 53 Plus   USN_REASON_HARD_LINK_CHANGE = 0x00010000,
Add comment 54 Plus   USN_REASON_COMPRESSION_CHANGE = 0x00020000,
Add comment 55 Plus   USN_REASON_ENCRYPTION_CHANGE = 0x00040000,
Add comment 56 Plus   USN_REASON_OBJECT_ID_CHANGE = 0x00080000,
Add comment 57 Plus   USN_REASON_REPARSE_POINT_CHANGE = 0x00100000,
Add comment 58 Plus   USN_REASON_STREAM_CHANGE = 0x00200000,
Add comment 59 Plus   USN_REASON_CLOSE = -1
Add comment 60 Plus   }
Add comment 61 Plus  
Add comment 62 Plus   #endregion
Add comment 63 Plus  
Add comment 64 Plus   #region private member variables
Add comment 65 Plus  
Add comment 66 Plus   private DriveInfo _driveInfo = null;
Add comment 67 Plus   private uint _volumeSerialNumber;
Add comment 68 Plus   private IntPtr _usnJournalRootHandle;
Add comment 69 Plus  
Add comment 70 Plus   private bool bNtfsVolume;
Add comment 71 Plus  
Add comment 72 Plus   #endregion
Add comment 73 Plus  
Add comment 74 Plus   #region properties
Add comment 75 Plus  
Add comment 76 Plus   private static TimeSpan _elapsedTime;
Add comment 77 Plus   public static TimeSpan ElapsedTime {
Add comment 78 Plus   get { return _elapsedTime; }
Add comment 79 Plus   }
Add comment 80 Plus  
Add comment 81 Plus   public string VolumeName {
Add comment 82 Plus   get { return _driveInfo.Name; }
Add comment 83 Plus   }
Add comment 84 Plus  
Add comment 85 Plus   public long AvailableFreeSpace {
Add comment 86 Plus   get { return _driveInfo.AvailableFreeSpace; }
Add comment 87 Plus   }
Add comment 88 Plus  
Add comment 89 Plus   public long TotalFreeSpace {
Add comment 90 Plus   get { return _driveInfo.TotalFreeSpace; }
Add comment 91 Plus   }
Add comment 92 Plus  
Add comment 93 Plus   public string Format {
Add comment 94 Plus   get { return _driveInfo.DriveFormat; }
Add comment 95 Plus   }
Add comment 96 Plus  
Add comment 97 Plus   public DirectoryInfo RootDirectory {
Add comment 98 Plus   get { return _driveInfo.RootDirectory; }
Add comment 99 Plus   }
Add comment 100 Plus  
Add comment 101 Plus   public long TotalSize {
Add comment 102 Plus   get { return _driveInfo.TotalSize; }
Add comment 103 Plus   }
Add comment 104 Plus  
Add comment 105 Plus   public string VolumeLabel {
Add comment 106 Plus   get { return _driveInfo.VolumeLabel; }
Add comment 107 Plus   }
Add comment 108 Plus  
Add comment 109 Plus   public uint VolumeSerialNumber {
Add comment 110 Plus   get { return _volumeSerialNumber; }
Add comment 111 Plus   }
Add comment 112 Plus  
Add comment 113 Plus   #endregion
Add comment 114 Plus  
Add comment 115 Plus   #region constructor(s)
Add comment 116 Plus  
Add comment 117 Plus   /// <summary>
Add comment 118 Plus   /// Constructor for NtfsUsnJournal class. If no exception is thrown, _usnJournalRootHandle and
Add comment 119 Plus   /// _volumeSerialNumber can be assumed to be good. If an exception is thrown, the NtfsUsnJournal
Add comment 120 Plus   /// object is not usable.
Add comment 121 Plus   /// </summary>
Add comment 122 Plus   /// <param name="driveInfo">DriveInfo object that provides access to information about a volume</param>
Add comment 123 Plus   /// <remarks>
Add comment 124 Plus   /// An exception thrown if the volume is not an 'NTFS' volume or
Add comment 125 Plus   /// if GetRootHandle() or GetVolumeSerialNumber() functions fail.
Add comment 126 Plus   /// Each public method checks to see if the volume is NTFS and if the _usnJournalRootHandle is
Add comment 127 Plus   /// valid. If these two conditions aren't met, then the public function will return a UsnJournalReturnCode
Add comment 128 Plus   /// error.
Add comment 129 Plus   /// </remarks>
Add comment 130 Plus   public NtfsUsnJournal(DriveInfo driveInfo) {
Add comment 131 Plus   DateTime start = DateTime.Now;
Add comment 132 Plus   _driveInfo = driveInfo;
Add comment 133 Plus  
Add comment 134 Plus   if (0 == string.Compare(_driveInfo.DriveFormat, "ntfs", true)) {
Add comment 135 Plus   bNtfsVolume = true;
Add comment 136 Plus  
Add comment 137 Plus   IntPtr rootHandle = IntPtr.Zero;
Add comment 138 Plus   UsnJournalReturnCode usnRtnCode = GetRootHandle(out rootHandle);
Add comment 139 Plus  
Add comment 140 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS) {
Add comment 141 Plus   _usnJournalRootHandle = rootHandle;
Add comment 142 Plus   usnRtnCode = GetVolumeSerialNumber(_driveInfo, out _volumeSerialNumber);
Add comment 143 Plus   if (usnRtnCode != UsnJournalReturnCode.USN_JOURNAL_SUCCESS) {
Add comment 144 Plus   _elapsedTime = DateTime.Now - start;
Add comment 145 Plus   throw new Win32Exception((int)usnRtnCode);
Add comment 146 Plus   }
Add comment 147 Plus   }
Add comment 148 Plus   else {
Add comment 149 Plus   _elapsedTime = DateTime.Now - start;
Add comment 150 Plus   throw new Win32Exception((int)usnRtnCode);
Add comment 151 Plus   }
Add comment 152 Plus   }
Add comment 153 Plus   else {
Add comment 154 Plus   _elapsedTime = DateTime.Now - start;
Add comment 155 Plus   throw new Exception(string.Format("{0} is not an 'NTFS' volume.", _driveInfo.Name));
Add comment 156 Plus   }
Add comment 157 Plus   _elapsedTime = DateTime.Now - start;
Add comment 158 Plus   }
Add comment 159 Plus  
Add comment 160 Plus   #endregion
Add comment 161 Plus  
Add comment 162 Plus   #region public methods
Add comment 163 Plus  
Add comment 164 Plus   /// <summary>
Add comment 165 Plus   /// CreateUsnJournal() creates a usn journal on the volume. If a journal already exists this function
Add comment 166 Plus   /// will adjust the MaximumSize and AllocationDelta parameters of the journal if the requested size
Add comment 167 Plus   /// is larger.
Add comment 168 Plus   /// </summary>
Add comment 169 Plus   /// <param name="maxSize">maximum size requested for the UsnJournal</param>
Add comment 170 Plus   /// <param name="allocationDelta">when space runs out, the amount of additional
Add comment 171 Plus   /// space to allocate</param>
Add comment 172 Plus   /// <param name="elapsedTime">The TimeSpan object indicating how much time this function
Add comment 173 Plus   /// took</param>
Add comment 174 Plus   /// <returns>a UsnJournalReturnCode
Add comment 175 Plus   /// USN_JOURNAL_SUCCESS CreateUsnJournal() function succeeded.
Add comment 176 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 177 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 178 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 179 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 180 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 181 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 182 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 183 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 184 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 185 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 186 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 187 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 188 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 189 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 190 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 191 Plus   /// </returns>
Add comment 192 Plus   /// <remarks>
Add comment 193 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 194 Plus   /// </remarks>
Add comment 195 Plus   public UsnJournalReturnCode
Add comment 196 Plus   CreateUsnJournal(ulong maxSize, ulong allocationDelta) {
Add comment 197 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 198 Plus   DateTime startTime = DateTime.Now;
Add comment 199 Plus  
Add comment 200 Plus   if (bNtfsVolume) {
Add comment 201 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE) {
Add comment 202 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 203 Plus   UInt32 cb;
Add comment 204 Plus  
Add comment 205 Plus   Win32Api.CREATE_USN_JOURNAL_DATA cujd = new Win32Api.CREATE_USN_JOURNAL_DATA();
Add comment 206 Plus   cujd.MaximumSize = maxSize;
Add comment 207 Plus   cujd.AllocationDelta = allocationDelta;
Add comment 208 Plus  
Add comment 209 Plus   int sizeCujd = Marshal.SizeOf(cujd);
Add comment 210 Plus   IntPtr cujdBuffer = Marshal.AllocHGlobal(sizeCujd);
Add comment 211 Plus   Win32Api.ZeroMemory(cujdBuffer, sizeCujd);
Add comment 212 Plus   Marshal.StructureToPtr(cujd, cujdBuffer, true);
Add comment 213 Plus  
Add comment 214 Plus   bool fOk = Win32Api.DeviceIoControl(
Add comment 215 Plus   _usnJournalRootHandle,
Add comment 216 Plus   Win32Api.FSCTL_CREATE_USN_JOURNAL,
Add comment 217 Plus   cujdBuffer,
Add comment 218 Plus   sizeCujd,
Add comment 219 Plus   IntPtr.Zero,
Add comment 220 Plus   0,
Add comment 221 Plus   out cb,
Add comment 222 Plus   IntPtr.Zero);
Add comment 223 Plus   if (!fOk) {
Add comment 224 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 225 Plus   }
Add comment 226 Plus   Marshal.FreeHGlobal(cujdBuffer);
Add comment 227 Plus   }
Add comment 228 Plus   else {
Add comment 229 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 230 Plus   }
Add comment 231 Plus   }
Add comment 232 Plus  
Add comment 233 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 234 Plus   return usnRtnCode;
Add comment 235 Plus   }
Add comment 236 Plus  
Add comment 237 Plus   /// <summary>
Add comment 238 Plus   /// DeleteUsnJournal() deletes a usn journal on the volume. If no usn journal exists, this
Add comment 239 Plus   /// function simply returns success.
Add comment 240 Plus   /// </summary>
Add comment 241 Plus   /// <param name="journalState">USN_JOURNAL_DATA object for this volume</param>
Add comment 242 Plus   /// <param name="elapsedTime">The TimeSpan object indicating how much time this function
Add comment 243 Plus   /// took</param>
Add comment 244 Plus   /// <returns>a UsnJournalReturnCode
Add comment 245 Plus   /// USN_JOURNAL_SUCCESS DeleteUsnJournal() function succeeded.
Add comment 246 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 247 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 248 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 249 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 250 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 251 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 252 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 253 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 254 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 255 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 256 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 257 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 258 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 259 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 260 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 261 Plus   /// </returns>
Add comment 262 Plus   /// <remarks>
Add comment 263 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 264 Plus   /// </remarks>
Add comment 265 Plus   public UsnJournalReturnCode
Add comment 266 Plus   DeleteUsnJournal(Win32Api.USN_JOURNAL_DATA journalState) {
Add comment 267 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 268 Plus   DateTime startTime = DateTime.Now;
Add comment 269 Plus  
Add comment 270 Plus   if (bNtfsVolume) {
Add comment 271 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE) {
Add comment 272 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 273 Plus   UInt32 cb;
Add comment 274 Plus  
Add comment 275 Plus   Win32Api.DELETE_USN_JOURNAL_DATA dujd = new Win32Api.DELETE_USN_JOURNAL_DATA();
Add comment 276 Plus   dujd.UsnJournalID = journalState.UsnJournalID;
Add comment 277 Plus   dujd.DeleteFlags = (UInt32)Win32Api.UsnJournalDeleteFlags.USN_DELETE_FLAG_DELETE;
Add comment 278 Plus  
Add comment 279 Plus   int sizeDujd = Marshal.SizeOf(dujd);
Add comment 280 Plus   IntPtr dujdBuffer = Marshal.AllocHGlobal(sizeDujd);
Add comment 281 Plus   Win32Api.ZeroMemory(dujdBuffer, sizeDujd);
Add comment 282 Plus   Marshal.StructureToPtr(dujd, dujdBuffer, true);
Add comment 283 Plus  
Add comment 284 Plus   bool fOk = Win32Api.DeviceIoControl(
Add comment 285 Plus   _usnJournalRootHandle,
Add comment 286 Plus   Win32Api.FSCTL_DELETE_USN_JOURNAL,
Add comment 287 Plus   dujdBuffer,
Add comment 288 Plus   sizeDujd,
Add comment 289 Plus   IntPtr.Zero,
Add comment 290 Plus   0,
Add comment 291 Plus   out cb,
Add comment 292 Plus   IntPtr.Zero);
Add comment 293 Plus  
Add comment 294 Plus   if (!fOk) {
Add comment 295 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 296 Plus   }
Add comment 297 Plus   Marshal.FreeHGlobal(dujdBuffer);
Add comment 298 Plus   }
Add comment 299 Plus   else {
Add comment 300 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 301 Plus   }
Add comment 302 Plus   }
Add comment 303 Plus  
Add comment 304 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 305 Plus   return usnRtnCode;
Add comment 306 Plus   }
Add comment 307 Plus  
Add comment 308 Plus   /// <summary>
Add comment 309 Plus   /// GetNtfsVolumeFolders() reads the Master File Table to find all of the folders on a volume
Add comment 310 Plus   /// and returns them in a SortedList<UInt64, Win32Api.UsnEntry> folders out parameter.
Add comment 311 Plus   /// </summary>
Add comment 312 Plus   /// <param name="folders">A SortedList<string, UInt64> list where string is
Add comment 313 Plus   /// the filename and UInt64 is the parent folder's file reference number
Add comment 314 Plus   /// </param>
Add comment 315 Plus   /// <param name="elapsedTime">A TimeSpan object that on return holds the elapsed time
Add comment 316 Plus   /// </param>
Add comment 317 Plus   /// <returns>
Add comment 318 Plus   /// USN_JOURNAL_SUCCESS GetNtfsVolumeFolders() function succeeded.
Add comment 319 Plus   /// VOLUME_NOT_NTFS volume is not an NTFS volume.
Add comment 320 Plus   /// INVALID_HANDLE_VALUE NtfsUsnJournal object failed initialization.
Add comment 321 Plus   /// USN_JOURNAL_NOT_ACTIVE usn journal is not active on volume.
Add comment 322 Plus   /// ERROR_ACCESS_DENIED accessing the usn journal requires admin rights, see remarks.
Add comment 323 Plus   /// ERROR_INVALID_FUNCTION error generated by DeviceIoControl() call.
Add comment 324 Plus   /// ERROR_FILE_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 325 Plus   /// ERROR_PATH_NOT_FOUND error generated by DeviceIoControl() call.
Add comment 326 Plus   /// ERROR_TOO_MANY_OPEN_FILES error generated by DeviceIoControl() call.
Add comment 327 Plus   /// ERROR_INVALID_HANDLE error generated by DeviceIoControl() call.
Add comment 328 Plus   /// ERROR_INVALID_DATA error generated by DeviceIoControl() call.
Add comment 329 Plus   /// ERROR_NOT_SUPPORTED error generated by DeviceIoControl() call.
Add comment 330 Plus   /// ERROR_INVALID_PARAMETER error generated by DeviceIoControl() call.
Add comment 331 Plus   /// ERROR_JOURNAL_DELETE_IN_PROGRESS usn journal delete is in progress.
Add comment 332 Plus   /// ERROR_INVALID_USER_BUFFER error generated by DeviceIoControl() call.
Add comment 333 Plus   /// USN_JOURNAL_ERROR unspecified usn journal error.
Add comment 334 Plus   /// </returns>
Add comment 335 Plus   /// <remarks>
Add comment 336 Plus   /// If function returns ERROR_ACCESS_DENIED you need to run application as an Administrator.
Add comment 337 Plus   /// </remarks>
Add comment 338 Plus   public UsnJournalReturnCode
Add comment 339 Plus   GetNtfsVolumeFolders(out List<Win32Api.UsnEntry> folders) {
Add comment 340 Plus   DateTime startTime = DateTime.Now;
Add comment 341 Plus   folders = new List<Win32Api.UsnEntry>();
Add comment 342 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 343 Plus  
Add comment 344 Plus   if (bNtfsVolume) {
Add comment 345 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE) {
Add comment 346 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 347 Plus  
Add comment 348 Plus   Win32Api.USN_JOURNAL_DATA usnState = new Win32Api.USN_JOURNAL_DATA();
Add comment 349 Plus   usnRtnCode = QueryUsnJournal(ref usnState);
Add comment 350 Plus  
Add comment 351 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS) {
Add comment 352 Plus   //
Add comment 353 Plus   // set up MFT_ENUM_DATA structure
Add comment 354 Plus   //
Add comment 355 Plus   Win32Api.MFT_ENUM_DATA med;
Add comment 356 Plus   med.StartFileReferenceNumber = 0;
Add comment 357 Plus   med.LowUsn = 0;
Add comment 358 Plus   med.HighUsn = usnState.NextUsn;
Add comment 359 Plus   Int32 sizeMftEnumData = Marshal.SizeOf(med);
Add comment 360 Plus   IntPtr medBuffer = Marshal.AllocHGlobal(sizeMftEnumData);
Add comment 361 Plus   Win32Api.ZeroMemory(medBuffer, sizeMftEnumData);
Add comment 362 Plus   Marshal.StructureToPtr(med, medBuffer, true);
Add comment 363 Plus  
Add comment 364 Plus   //
Add comment 365 Plus   // set up the data buffer which receives the USN_RECORD data
Add comment 366 Plus   //
Add comment 367 Plus   int pDataSize = sizeof(UInt64) + 10000;
Add comment 368 Plus   IntPtr pData = Marshal.AllocHGlobal(pDataSize);
Add comment 369 Plus   Win32Api.ZeroMemory(pData, pDataSize);
Add comment 370 Plus   uint outBytesReturned = 0;
Add comment 371 Plus   Win32Api.UsnEntry usnEntry = null;
Add comment 372 Plus  
Add comment 373 Plus   //
Add comment 374 Plus   // Gather up volume's directories
Add comment 375 Plus   //
Add comment 376 Plus   while (false != Win32Api.DeviceIoControl(
Add comment 377 Plus   _usnJournalRootHandle,
Add comment 378 Plus   Win32Api.FSCTL_ENUM_USN_DATA,
Add comment 379 Plus   medBuffer,
Add comment 380 Plus   sizeMftEnumData,
Add comment 381 Plus   pData,
Add comment 382 Plus   pDataSize,
Add comment 383 Plus   out outBytesReturned,
Add comment 384 Plus   IntPtr.Zero)) {
Add comment 385 Plus   IntPtr pUsnRecord = new IntPtr(pData.ToInt32() + sizeof(Int64));
Add comment 386 Plus   while (outBytesReturned > 60) {
Add comment 387 Plus   usnEntry = new Win32Api.UsnEntry(pUsnRecord);
Add comment 388 Plus   //
Add comment 389 Plus   // check for directory entries
Add comment 390 Plus   //
Add comment 391 Plus   if (usnEntry.IsFolder) {
Add comment 392 Plus   folders.Add(usnEntry);
Add comment 393 Plus   }
Add comment 394 Plus   pUsnRecord = new IntPtr(pUsnRecord.ToInt32() + usnEntry.RecordLength);
Add comment 395 Plus   outBytesReturned -= usnEntry.RecordLength;
Add comment 396 Plus   }
Add comment 397 Plus   Marshal.WriteInt64(medBuffer, Marshal.ReadInt64(pData, 0));
Add comment 398 Plus   }
Add comment 399 Plus  
Add comment 400 Plus   Marshal.FreeHGlobal(pData);
Add comment 401 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 402 Plus   if (usnRtnCode == UsnJournalReturnCode.ERROR_HANDLE_EOF) {
Add comment 403 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 404 Plus   }
Add comment 405 Plus   }
Add comment 406 Plus   }
Add comment 407 Plus   else {
Add comment 408 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 409 Plus   }
Add comment 410 Plus   }
Add comment 411 Plus   folders.Sort();
Add comment 412 Plus   _elapsedTime = DateTime.Now - startTime;
Add comment 413 Plus   return usnRtnCode;
Add comment 414 Plus   }
Add comment 415 Plus  
Add comment 416 Plus   public UsnJournalReturnCode
Add comment 417 Plus   GetFilesMatchingFilter(string filter, out List<Win32Api.UsnEntry> files) {
Add comment 418 Plus   DateTime startTime = DateTime.Now;
Add comment 419 Plus   filter = filter.ToLower();
Add comment 420 Plus   files = new List<Win32Api.UsnEntry>();
Add comment 421 Plus   string[] fileTypes = filter.Split(' ', ',', ';');
Add comment 422 Plus   UsnJournalReturnCode usnRtnCode = UsnJournalReturnCode.VOLUME_NOT_NTFS;
Add comment 423 Plus  
Add comment 424 Plus   if (bNtfsVolume) {
Add comment 425 Plus   if (_usnJournalRootHandle.ToInt32() != Win32Api.INVALID_HANDLE_VALUE) {
Add comment 426 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 427 Plus  
Add comment 428 Plus   Win32Api.USN_JOURNAL_DATA usnState = new Win32Api.USN_JOURNAL_DATA();
Add comment 429 Plus   usnRtnCode = QueryUsnJournal(ref usnState);
Add comment 430 Plus  
Add comment 431 Plus   if (usnRtnCode == UsnJournalReturnCode.USN_JOURNAL_SUCCESS) {
Add comment 432 Plus   //
Add comment 433 Plus   // set up MFT_ENUM_DATA structure
Add comment 434 Plus   //
Add comment 435 Plus   Win32Api.MFT_ENUM_DATA med;
Add comment 436 Plus   med.StartFileReferenceNumber = 0;
Add comment 437 Plus   med.LowUsn = 0;
Add comment 438 Plus   med.HighUsn = usnState.NextUsn;
Add comment 439 Plus   Int32 sizeMftEnumData = Marshal.SizeOf(med);
Add comment 440 Plus   IntPtr medBuffer = Marshal.AllocHGlobal(sizeMftEnumData);
Add comment 441 Plus   Win32Api.ZeroMemory(medBuffer, sizeMftEnumData);
Add comment 442 Plus   Marshal.StructureToPtr(med, medBuffer, true);
Add comment 443 Plus  
Add comment 444 Plus   //
Add comment 445 Plus   // set up the data buffer which receives the USN_RECORD data
Add comment 446 Plus   //
Add comment 447 Plus   int pDataSize = sizeof(UInt64) + 10000;
Add comment 448 Plus   IntPtr pData = Marshal.AllocHGlobal(pDataSize);
Add comment 449 Plus   Win32Api.ZeroMemory(pData, pDataSize);
Add comment 450 Plus   uint outBytesReturned = 0;
Add comment 451 Plus   Win32Api.UsnEntry usnEntry = null;
Add comment 452 Plus  
Add comment 453 Plus   //
Add comment 454 Plus   // Gather up volume's directories
Add comment 455 Plus   //
Add comment 456 Plus   while (false != Win32Api.DeviceIoControl(
Add comment 457 Plus   _usnJournalRootHandle,
Add comment 458 Plus   Win32Api.FSCTL_ENUM_USN_DATA,
Add comment 459 Plus   medBuffer,
Add comment 460 Plus   sizeMftEnumData,
Add comment 461 Plus   pData,
Add comment 462 Plus   pDataSize,
Add comment 463 Plus   out outBytesReturned,
Add comment 464 Plus   IntPtr.Zero)) {
Add comment 465 Plus   IntPtr pUsnRecord = new IntPtr(pData.ToInt32() + sizeof(Int64));
Add comment 466 Plus   while (outBytesReturned > 60) {
Add comment 467 Plus   usnEntry = new Win32Api.UsnEntry(pUsnRecord);
Add comment 468 Plus   //
Add comment 469 Plus   // check for directory entries
Add comment 470 Plus   //
Add comment 471 Plus   if (usnEntry.IsFile) {
Add comment 472 Plus   string extension = Path.GetExtension(usnEntry.Name).ToLower();
Add comment 473 Plus   if (0 == string.Compare(filter, "*")) {
Add comment 474 Plus   files.Add(usnEntry);
Add comment 475 Plus   }
Add comment 476 Plus   else if (!string.IsNullOrEmpty(extension)) {
Add comment 477 Plus   foreach (string fileType in fileTypes) {
Add comment 478 Plus   if (extension.Contains(fileType)) {
Add comment 479 Plus   files.Add(usnEntry);
Add comment 480 Plus   }
Add comment 481 Plus   }
Add comment 482 Plus   }
Add comment 483 Plus   }
Add comment 484 Plus   pUsnRecord = new IntPtr(pUsnRecord.ToInt32() + usnEntry.RecordLength);
Add comment 485 Plus   outBytesReturned -= usnEntry.RecordLength;
Add comment 486 Plus   }
Add comment 487 Plus   Marshal.WriteInt64(medBuffer, Marshal.ReadInt64(pData, 0));
Add comment 488 Plus   }
Add comment 489 Plus  
Add comment 490 Plus   Marshal.FreeHGlobal(pData);
Add comment 491 Plus   usnRtnCode = ConvertWin32ErrorToUsnError((Win32Api.GetLastErrorEnum)Marshal.GetLastWin32Error());
Add comment 492 Plus   if (usnRtnCode == UsnJournalReturnCode.ERROR_HANDLE_EOF) {
Add comment 493 Plus   usnRtnCode = UsnJournalReturnCode.USN_JOURNAL_SUCCESS;
Add comment 494 Plus   }
Add comment 495 Plus   }
Add comment 496 Plus   }
Add comment 497 Plus   else {
Add comment 498 Plus   usnRtnCode = UsnJournalReturnCode.INVALID_HANDLE_VALUE;
Add comment 499 Plus   }
Win32Api.cs
/BExplorer/BetterExplorer/__Obsolete/MFTScanning/Win32Api.cs
/BExplorer/BetterExplorer/__Obsolete/MFTScanning/Win32Api.cs
Renamed from
/BExplorer/BetterExplorer/MFTScanning/Win32Api.cs
The file content is identical.
FTPServerFileSystem.cs
/BExplorer/BetterExplorer/__Obsolete/FTPServerFileSystem.cs
/BExplorer/BetterExplorer/__Obsolete/FTPServerFileSystem.cs
Renamed from
/BExplorer/BetterExplorer/Networks/FileSystem/FTPServerFileSystem.cs
NetworkBrowser.cs
/BExplorer/BetterExplorer/__Obsolete/NetworkBrowser.cs
/BExplorer/BetterExplorer/__Obsolete/NetworkBrowser.cs
Renamed from
/BExplorer/BetterExplorer/HelperClasses/NetworkBrowser.cs
SharpBoxFileSystem.cs
/BExplorer/BetterExplorer/__Obsolete/SharpBoxFileSystem.cs
/BExplorer/BetterExplorer/__Obsolete/SharpBoxFileSystem.cs
Renamed from
/BExplorer/BetterExplorer/Networks/FileSystem/SharpBoxFileSystem.cs
Wpf32Window.cs
/BExplorer/BetterExplorer/__Obsolete/Wpf32Window.cs
/BExplorer/BetterExplorer/__Obsolete/Wpf32Window.cs
Renamed from
/BExplorer/BetterExplorer/HelperClasses/Wpf32Window.cs
MainWindow_Tabs.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Tabs.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Tabs.cs
MainWindow_Updating.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Updating.cs
/BExplorer/BetterExplorer/_MainWindow/MainWindow_Updating.cs
ApplicationInstanceManager.cs
/BExplorer/BetterExplorer/Application/ApplicationInstanceManager.cs
/BExplorer/BetterExplorer/Application/ApplicationInstanceManager.cs
ArchiveCreateWizard.cs
/BExplorer/BetterExplorer/ArchiveView/ArchiveCreateWizard.cs
/BExplorer/BetterExplorer/ArchiveView/ArchiveCreateWizard.cs
CustomizeQAT.xaml.cs
/BExplorer/BetterExplorer/Customize/CustomizeQAT.xaml.cs
/BExplorer/BetterExplorer/Customize/CustomizeQAT.xaml.cs
RibbonItemListDisplay.xaml.cs
/BExplorer/BetterExplorer/Customize/RibbonItemListDisplay.xaml.cs
/BExplorer/BetterExplorer/Customize/RibbonItemListDisplay.xaml.cs
ClipBoardMonitor.cs
/BExplorer/BetterExplorer/HelperClasses/ClipBoardMonitor.cs
/BExplorer/BetterExplorer/HelperClasses/ClipBoardMonitor.cs
FolderStructForSize.cs
/BExplorer/BetterExplorer/HelperClasses/FolderStructForSize.cs
/BExplorer/BetterExplorer/HelperClasses/FolderStructForSize.cs
FriendlySizeConverter.cs
/BExplorer/BetterExplorer/HelperClasses/FriendlySizeConverter.cs
/BExplorer/BetterExplorer/HelperClasses/FriendlySizeConverter.cs
WindowExtensions.cs
/BExplorer/BetterExplorer/HelperClasses/WindowExtensions.cs
/BExplorer/BetterExplorer/HelperClasses/WindowExtensions.cs
NtfsUsnJournal.cs
/BExplorer/BetterExplorer/MFTScanning/NtfsUsnJournal.cs
/BExplorer/BetterExplorer/MFTScanning/NtfsUsnJournal.cs
Directory.cs
/BExplorer/BetterExplorer/Networks/FileSystem/Directory.cs
/BExplorer/BetterExplorer/Networks/FileSystem/Directory.cs
File.cs
/BExplorer/BetterExplorer/Networks/FileSystem/File.cs
/BExplorer/BetterExplorer/Networks/FileSystem/File.cs
ColourConverter.cs
/BExplorer/BetterExplorer/PieChart/PieChart/ColourConverter.cs
/BExplorer/BetterExplorer/PieChart/PieChart/ColourConverter.cs
LegendConverter.cs
/BExplorer/BetterExplorer/PieChart/PieChart/LegendConverter.cs
/BExplorer/BetterExplorer/PieChart/PieChart/LegendConverter.cs
PiePlotter.xaml.cs
/BExplorer/BetterExplorer/PieChart/PieChart/PiePlotter.xaml.cs
/BExplorer/BetterExplorer/PieChart/PieChart/PiePlotter.xaml.cs
BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj
/BExplorer/BetterExplorer/BetterExplorer.csproj
MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml
/BExplorer/BetterExplorer/MainWindow.xaml
MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs
/BExplorer/BetterExplorer/MainWindow.xaml.cs
SendKeysEx.cs
/ConsoleControl/_Obsolete/SendKeysEx.cs
/ConsoleControl/_Obsolete/SendKeysEx.cs
WindowFinder.cs
/ConsoleControl/_Obsolete/WindowFinder.cs
/ConsoleControl/_Obsolete/WindowFinder.cs
Renamed from
/ConsoleControl/WindowFinder.cs
ProcessInterface.cs
/ConsoleControl/Process Helper/ProcessInterface.cs
/ConsoleControl/Process Helper/ProcessInterface.cs
ConsoleControl.csproj
/ConsoleControl/ConsoleControl.csproj
/ConsoleControl/ConsoleControl.csproj
ConsoleEventArgs.cs
/ConsoleControl/ConsoleEventArgs.cs
/ConsoleControl/ConsoleEventArgs.cs
KeyMapping.cs
/ConsoleControl/KeyMapping.cs
/ConsoleControl/KeyMapping.cs
SendKeysEx.cs
/ConsoleControl/SendKeysEx.cs
/ConsoleControl/SendKeysEx.cs
DelRecycleBin.cs
/FileOperation/DelRecycleBin.cs
/FileOperation/DelRecycleBin.cs
Form1.cs
/FileOperation/Form1.cs
/FileOperation/Form1.cs
NavigationLog.cs
/Shell/NavigationLog.cs
/Shell/NavigationLog.cs
TabControl.cs
/TabControl/TabControl.cs
/TabControl/TabControl.cs
TabItem.cs
/TabControl/TabItem.cs
/TabControl/TabItem.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
BreadcrumbBarFSItem.cs
/WpfControlLibrary1/BreadcrumbBarFSItem.cs
/WpfControlLibrary1/BreadcrumbBarFSItem.cs