AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Q-Dir - excellent file manager

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources
View previous topic :: View next topic  
Author Message
Torrente
Guest





PostPosted: Mon Apr 14, 2008 7:10 pm    Post subject: Q-Dir - excellent file manager Reply with quote

I just found this one, it's able to open 4 panels at one window

It's portable and smallest file manager ever 180KB

Features:
Favorites: - Quick access to most often used folders.
Drag&Drop: - Move files by dragging in Q-views, and other programs such as MS Explorer.
Clipboard: - Copy/ Paste between the Q-Dir directory views, and other programs such as MS Explorer.
Folder-Type: - ZIP-, FTP-,cabinet-,network-, system - folders, shortcuts ...
Views: - Large icons, tiles, list, detail, thumbnail (Vista: extra large symbols) .
Export: - to XLS, CSV, TXT, HTML.
Popup Menus: - Desktop, My Computer.
Screen magnifier: - anything on the screen can be enlarged.
Color Filter: - Different colors for different item types (e.g. *.log;*.txt).
Highlight-Filter: - Effective way for fast items highlighting.
File-Filter: - Allows for quick and easy filtering of the items.
Columns: - All columns support, and save function .
Quick-Link´s: - For fast folder access.
Folder-Select: - Fast & flexible folder selection address-bar/ desktop menu/ my-computer menu/...
Multi-INI: - Several INI files for Q-Dir.
Tree-View: - Simple and quadruple.
Preview: - Allows a quick preview.

http://www.softwareok.com/?seite=Software/Q-Dir&language=english
Back to top
Tuncay



Joined: 07 Nov 2006
Posts: 379
Location: Berlin

PostPosted: Tue Apr 15, 2008 8:13 pm    Post subject: Reply with quote

I did not tested it out, because I am happy with my SpeedCommander 11. But this one looks nice. IT IS SO SMALL Exclamation
Back to top
View user's profile Send private message Send e-mail
Oberon



Joined: 18 Feb 2008
Posts: 408

PostPosted: Tue Apr 15, 2008 9:28 pm    Post subject: Reply with quote

The English translation is incomplete.
_________________
Back to top
View user's profile Send private message
Dragonscloud



Joined: 16 Jul 2005
Posts: 90

PostPosted: Sun Apr 20, 2008 9:21 am    Post subject: Reply with quote

Useful features, compact, with a reasonable memory footprint. I'm on a multi-boot system, and the portability is a plus. Thanks for the post.
_________________
“yields falsehood when preceded by its quotation” yields falsehood when preceded by its quotation.
Back to top
View user's profile Send private message
Guest






PostPosted: Tue Apr 22, 2008 12:38 pm    Post subject: Thanks! Reply with quote

I've tried SO MANY explorer replacements and have finally found one I can use! A million thanks!
Back to top
SKAN



Joined: 26 Dec 2005
Posts: 5298

PostPosted: Tue Apr 22, 2008 3:51 pm    Post subject: Reply with quote

@Torrente: Many thanks.. cool tool.


Q-Dir uses regular Windows controls and so can be automated with AHK.

Here is an example code to toggle the display of TreeView Pane:

Code:
#IfWinActive Q-Dir 3.03 ahk_class ATL:00409DB0

F3:: ; Toggle Display of TreeView Pane
ControlGet, hTV, Hwnd,, SysTreeView321, A
If DllCall( "IsWindowVisible", UInt, hTv )
   SendMessage, 0x111, 32877,,, A ; No TreeView
Else
   SendMessage, 0x111, 32875,,, A ; One TreeView for All
Return

#IfWinActive


For the other magic numbers, you may refer the Menu Resource extracted with ResHacker:

Code:
128 MENU
LANGUAGE LANG_GERMAN, SUBLANG_GERMAN
{
POPUP "&File"
{
   MENUITEM "&New (Cloning)\tStrg+N",  57600
   MENUITEM "&Open...\tCtrl+O",  57601
   MENUITEM "&Save\tCtrl+S",  57603
   MENUITEM "Set at Desktop Item",  32820
   MENUITEM "E&xport",  32816
   MENUITEM "&Exit\tAlt+F4",  57665
   MENUITEM SEPARATOR
}
POPUP "&Edit"
{
   MENUITEM "for aktiv View",  32808,  GRAYED
   MENUITEM SEPARATOR
   MENUITEM "Select A&ll\tCtrl+A",  57642
}
POPUP "&View"
{
   MENUITEM "&Status Bar",  59393
   MENUITEM "&Full Screen\tF11",  32859
}
POPUP "&Favorites"
{
   MENUITEM "Add to Favorites...",  32919
   MENUITEM "Organize Favorites...",  32779
   MENUITEM "Folder",  32841
   MENUITEM SEPARATOR
   MENUITEM "In new Q-Dir with Ctrl",  32784,  GRAYED
}
POPUP "E&xtras"
{
   POPUP "Q-Dir always ..."
   {
      MENUITEM "Normal (the default)",  32945
      MENUITEM "Maximized start",  32946
      MENUITEM "With current window position",  32947
      MENUITEM "Last window position",  32948
      MENUITEM SEPARATOR
      MENUITEM "now: &centered",  32949
      MENUITEM "now: to the &left edge",  32950
      MENUITEM "now: to the &right edge",  32951
      MENUITEM SEPARATOR
      MENUITEM "Classic Design",  32880
      MENUITEM "Flat Design",  32881
   }
   POPUP "Starting as"
   {
      MENUITEM "Q-Dir",  32960
      MENUITEM "3T-Dir",  32961
      MENUITEM "3B-Dir",  32962
      MENUITEM "2H-Dir",  32963
      MENUITEM "2V-Dir",  32964
      MENUITEM "4H-Dir",  32966
      MENUITEM "4V-Dir",  32968
      MENUITEM "3H-Dir",  32967
      MENUITEM "3V-Dir",  32969
      MENUITEM "Use last view",  32965
   }
   POPUP "Color && Columns"
   {
      MENUITEM "Use Color-Filter",  32802
      MENUITEM "Save columns",  32803
      MENUITEM "Full row select",  32805
      MENUITEM "Show grid lines",  32806
   }
   POPUP "Tree-View"
   {
      MENUITEM "One 4 all",  32875
      MENUITEM "All have one",  32876
      MENUITEM SEPARATOR
      MENUITEM "No use",  32877
   }
   MENUITEM SEPARATOR
   POPUP "System"
   {
      MENUITEM "Show hiden files && folders",  32793
      MENUITEM "Hide extensions for known file types",  32794
      MENUITEM "Add Q-Dir to shell contextmenu",  32800
      MENUITEM "Regiister (*.qdr) for Q-Dir",  33999
      MENUITEM SEPARATOR
      MENUITEM "... &more",  32798
   }
   POPUP "Network"
   {
      MENUITEM "Connect Drive",  32837
      MENUITEM "Disconnect Drive",  32838
   }
   MENUITEM SEPARATOR
   MENUITEM "... &more Options",  32804
}
POPUP "Info"
{
   MENUITEM "&about Q-Dir...",  57664
   MENUITEM "&License...",  32778
   MENUITEM "&Help",  57670
   MENUITEM SEPARATOR
   MENUITEM "&DONATE",  32910
   MENUITEM "More Freeware of Nenad Hrg",  32780
   MENUITEM "Contact me",  32781
   MENUITEM "Error report ",  32782
   MENUITEM "Suggestion for improvements",  32783
   MENUITEM SEPARATOR
   MENUITEM "Recommend Q-Dir",  32817
   MENUITEM "Send Q-Dir by e-mail",  32818
}
POPUP "X"
{
   MENUITEM "Add your Fav. Search-Provider ",  32909
}
}


Smile
Back to top
View user's profile Send private message
Wolfer



Joined: 08 Nov 2005
Posts: 14
Location: Chicago, IL

PostPosted: Sun May 04, 2008 6:02 am    Post subject: Q-Dir Problems Reply with quote

Nice 4-pane, but in VISTA it cannot distinguish between files in the Program Files section and files in the VirtualStore/Program Files section. Everything in VirtualStore shows up as if it resides in C:\Program Files, but if you try to copy/move etc....whoops! File not found!
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Utilities & Resources All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group