private void NavigationPane_Click(string path)
 {
     if (ProcessFolder(path))
     {
         m_History.Add(path);
         RefreshDisksBrowser(CurrentPath, disksBrowser.SelectedItem.ToString());
     }
     else if (Directory.Exists(path))
     {
         ProcessFolder(CurrentPath);
     }
 }