topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Tuesday March 19, 2024, 4:26 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Author Topic: IDEA: go to parent folder with double-click  (Read 23119 times)

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
IDEA: go to parent folder with double-click
« on: May 19, 2007, 06:32 AM »
Hi, i use FreeCommander all the time and one feature i love about it is that you can go to parent folder by double-clicking whitespace (it even highlights the parent folder which is great). I use this feature so much that i always find myself trying to use it accidentally in every other software (i.e. when opening/saving in Photoshop).

I found a little software that enable this double-clicking thing in every explorer window (that means open/save windows too), but this program also does a lot of other things that i really don't care about and i don't like the idea of having my memory occupied for nothing (i use a laptop with low mem).

So if someone had the possibility and time to think about a program (or AHK script) of this kind, that would be really great.

Thanks.
« Last Edit: November 17, 2007, 03:29 AM by brotherS »

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #1 on: May 25, 2007, 04:01 AM »
Hmmmm well :) At least, maybe someone could give me hints on how to do such a thing in AHK ? It could be a nice first AHK project ...

Thanks :)

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #2 on: May 25, 2007, 04:09 AM »
If you want to do this in autohotkey, you'll probably have to set a doubleclick 'hotkey' and check if it's initiated in an explorer class, possibly file open/save dialog. This is not hard to do. A double click is a succession of two clicks within the same window within a specified time, although I would advice to look at the source of some of Skrommel's AHK scripts, because I'm sure he's used one to detect a triple click.

However you also have to check you are not clicking on a folder or file but in empty space, and I am not sure how they are recognised. That will be the tricky part.

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #3 on: May 25, 2007, 05:12 AM »
If you want to do this in autohotkey, you'll probably have to set a doubleclick 'hotkey' and check if it's initiated in an explorer class, possibly file open/save dialog. This is not hard to do. A double click is a succession of two clicks within the same window within a specified time, although I would advice to look at the source of some of Skrommel's AHK scripts, because I'm sure he's used one to detect a triple click.
Yep, i'll try to find how to detect double-click.

However you also have to check you are not clicking on a folder or file but in empty space, and I am not sure how they are recognised. That will be the tricky part.
Yeah, that's what i was thinking, i'm a total newbie so i have no idea how to do that ...

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #4 on: May 25, 2007, 05:22 AM »
You might be able to get the value that is selected after the first click.
if that is empty then obviously nothing is selected and the ahk can go to the parent folder.

But for that you always need to know what folder you are in as well. It is unlikely that running cd.. would work.

So because of the explorer interaction adding this in a AHK script will be not trivial. Maybe someone else can give pointers or forum links to help you further.

jgpaiva

  • Global Moderator
  • Joined in 2006
  • *****
  • Posts: 4,727
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #5 on: May 25, 2007, 05:48 AM »
But for that you always need to know what folder you are in as well. It is unlikely that running cd.. would work.
A possible solution would be to send the backspace key... If nothing is selected, it'll go to parent folder ;)

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #6 on: May 25, 2007, 07:15 AM »
ah yes so it's just turn double click into backspace.

The code below should get someone started but at the moment it sends backspace to any application for anything on double click, causing problems in texteditors etc ;) I need someone else to take it further.

Also it seems vista does the double click to parent window in explorer already. Also it might make sense to change it to double-rightclick which causes less interference.
; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.
; todo: limit it to explorer , open/save dialogue box and special folders
;         limit to only run when not selected

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

~LButton Up::
If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500) {
; info about window/ control the mouse is hovering over
MouseGetPos,,,id,ControlHwnd,2
; information for tooltip
WinGetTitle, title, ahk_id %id%
WinGetClass, class, ahk_id %id%
ToolTip, ahk_id %id%`nahk_class %class%`n%title%`nControl: %ControlHwnd%

; send actual keystroke to control
ControlSend,,{BS},ahk_id %ControlHwnd%
}
Return
« Last Edit: May 25, 2007, 07:19 AM by justice »

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #7 on: May 25, 2007, 10:21 AM »
I think i did it !

My code may be very messy and ugly but it seems to work. It's based on your code Justice :

; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.
; todo: limit it to explorer , open/save dialogue box and special folders
;         limit to only run when not selected

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

~LButton Up::

If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500) {
if (class = "#32770" and IsSelected = 0) ; if active window is open/save dialog and no file/folder is selected
{
ControlSend,,{BS},ahk_id %ControlHwnd%
}
} else { ; on first click
; info about window/ control the mouse is hovering over
MouseGetPos,,,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%
; checks if a file or folder is selected in the dialog box
ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
}
Return

Any improvement and/or advice is welcome :)
« Last Edit: May 25, 2007, 10:25 AM by ak_ »

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #8 on: May 25, 2007, 10:43 AM »
Hey great work :D
A use of controlget that I had not seen before  :Thmbsup: Well done!
I've enclosed a compiled version of the script.
« Last Edit: May 25, 2007, 10:46 AM by justice »

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #9 on: May 25, 2007, 12:31 PM »
Thanks ! :)

I modified it so it works in explorer windows too.

Menu tray, icon, daddyclick.ico ; remove this if you don't want to use custom tray icon
; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.
; todo: limit it to explorer , open/save dialogue box and special folders
;         limit to only run when not selected

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

~LButton Up::

If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500) {
if ((class = "#32770" or class="CabinetWClass" or class="ExploreWClass") and IsSelected = 0) ; if active window is open/save dialog and no file/folder is selected
{
ControlSend,,{BS},ahk_id %ControlHwnd%
}
} else { ; on first click
; info about window/ control the mouse is hovering over
MouseGetPos,,,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%
; checks if a file or folder is selected in the dialog box
ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
}
Return

I also made an icon because i like to use custom tray icon so i can easily locate scripts in the tray. It is in the zip attached to this post.

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #10 on: May 25, 2007, 01:16 PM »
Ah use FileInstall to include the .ico in the compiled exe ;)

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #11 on: May 25, 2007, 05:42 PM »
Thanks Justice i didn't know about this command and it's kinda neat.

Ok, i tried to add a feature : when you go to parent folder, the folder you come from is automatically selected in the folder list.

It goes like this :

Menu tray, icon, daddyclick.ico ; remove this if you don't want to use custom tray icon
; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

~LButton Up::

If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500) {
if ((class = "#32770" or class="CabinetWClass" or class="ExploreWClass") and IsSelected = 0) { ; if open/save dialog OR explorer
ControlGetText prevDir, ComboBox1, ahk_class #32770 ; gets the name of the current folder from the combobox
ControlSend,,{BS},ahk_id %ControlHwnd% ; sends backspace
Sleep 30
Loop, parse, prevDir
{
ControlSendRaw, SysListView321, %A_LoopField%, ahk_class #32770 ; sends letters from the previous folder's name one after another to reach folder quickly
ControlGet, testSelected, List, Selected, SysListView321, ahk_class #32770 ; checks selected folder
if (testSelected = prevDir) { ; if selected folder is the folder we come from
break
}

}
}

} else
{
; info about window/ control the mouse is hovering over
MouseGetPos,,,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%
; checks if a file or folder is selected in the dialog box
ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
}
Return

I tested it 1500 times and it seems to be working :)

Two problems remain :

1- if you double-click the scrollbar (which can happen a lot, as i realised) it goes to parent folder. I have to find a way to exclude scrollbars (edit : i think a found something, i'll give it a try tomorrow)
2- With the new feature mentionned above, the script gets a little confused when there is no parent folder to go to (ie Desktop - it's the only case i guess), but no big deal. Just *not clean*.
« Last Edit: May 25, 2007, 06:54 PM by ak_ »

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #12 on: May 26, 2007, 02:41 AM »
Hmmm, i had a look at it, it works pretty well in open/save dialogs, but is still very buggy in explorer windows.

By the way, i had to modify it a little so the "folder selection" stuff works :

Menu tray, icon, daddyclick.ico ; remove this if you don't want to use custom tray icon
; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.

~LButton Up::

If (A_PriorHotKey = A_ThisHotKey and A_TimeSincePriorHotkey < 500) {
if ((class = "#32770" or class="CabinetWClass" or class="ExploreWClass") and IsSelected = 0) { ; if open/save dialog OR explorer
; retrieve current folder depending on the window class
if (class = "#32770"){
ControlGetText prevDir, ComboBox1, ahk_class %class%
}
if (class = "ExploreWClass" or class = "CabinetWClass") {
ControlGetText prevDir, Edit1, ahk_class %class% ; retrieve current folder from Edit1 field
StringGetPos, SlashPos, prevDir, \, R1 ; get position of last \
SlashPos += 2 ; add 2 to the position so StringMid works
StringMid, prevDir, prevDir, SlashPos ; get part of the string, from last \ to the end
}

ControlSend,,{BS},ahk_id %ControlHwnd% ; sends backspace
Sleep 50
Loop, parse, prevDir
{
ControlSendRaw, SysListView321, %A_LoopField%, ahk_class %class% ; sends letters from the previous folder's name one after another to reach folder quickly
ControlGet, testSelected, List, Selected, SysListView321, ahk_class %class% ; checks selected folder
if (testSelected = prevDir) { ; if selected folder is the folder we come from
break
}

}
}

} else
{
; info about window/ control the mouse is hovering over
MouseGetPos,,,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%
; checks if a file or folder is selected in the dialog box
ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
}
Return

Not perfect though...
« Last Edit: May 26, 2007, 08:09 AM by ak_ »

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #13 on: May 27, 2007, 04:57 AM »
urlwolf found Pistachio which does this as well it seems (not tested myself).

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #14 on: May 27, 2007, 07:51 AM »
Pitaschio yeah i know it, that's the little software i'm refering to in my first message (i ran into it on Lifehacker some time ago), but i just realised i gave freecommander's url instead of the correct one ...

Actually Pitaschio does the double-click thing very well but also does a lot of things that i don't need, so i wanted to make my own script to gain a few ko of memory :) And Pitaschio doesn't select the folder after going to parent and i like this feature (Freecommander-like) :D

Anyway, it's a lot of fun trying to do this in AHK, i'm falling in love with this thing :)
« Last Edit: May 27, 2007, 07:53 AM by ak_ »

Nighted

  • Charter Honorary Member
  • Joined in 2005
  • ***
  • Posts: 572
  • Meat Popsicle
    • View Profile
    • Nighted@deviantART
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #15 on: May 27, 2007, 11:27 AM »
You can do this with QT TabBar. (I'm referring to what you mentioned in the first post)
I`m a firm believer in the philosophy of a ruling class, especially since I rule.

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #16 on: June 20, 2007, 05:50 AM »
Nighted> thanks for the info. However, as i have no use for other QT Tabbar's features, i don't feel like using it. And i like working on DaddyClick as a first ahk project anyway :)

Anyway, i updated DaddyClick and fixed a few bugs. Now, clicks on scrollbars (and more generally, clicks outside file list), are ignored. I also included the new icon.

Here's the code, sorry if it looks ugly :
; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetKeyDelay 0,0

~LButton Up::
; info about window/ control the mouse is hovering over
CoordMode Mouse,Screen
MouseGetPos,,,,ControlClass
MouseGetPos,MouseX,MouseY,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%

If (class <> "#32770" and class <> "CabinetWClass" and class <> "ExploreWClass") ; if not open/save dialog OR explorer
    Return
If ControlClass <> SysListView321 ;if not Clicking filelist's whiteSpace
    Return

; Scrollbars detection
ControlGet cStyle, Style,,%ControlClass%, ahk_id %id%
WinGetPos winX, winY, winW, winH, ahk_id %id%
ControlGetPos ctlX, ctlY, ctlW, ctlH, %ControlClass%, ahk_id %id%
VScrollX2 := winx + ctlX + ctlW
VScrollX := VScrollX2 - 20
HScrollY2 := winy + ctlY + ctlH
HScrollY := HScrollY2 - 20

If MouseY Between %HScrollY% and %HScrollY2%
    If cStyle & 0x100000
        Return
If MouseX Between %VScrollX% and %VScrollX2%
    If cStyle & 0x200000
        Return

If (A_PriorHotkey = A_ThisHotkey and A_TimeSincePriorHotkey < 500 and nbClick = 1) {
    If (IsSelected = 1) ; if not Clicking filelist's whiteSpace
        Return

    ; retrieve current folder depending on the window class
    If (class = "#32770"){
        ControlGetText prevDir, ComboBox1, ahk_class %class%
      }

    If (class = "ExploreWClass" or class = "CabinetWClass") {
        ControlGetText prevDir, Edit1, ahk_class %class% ; retrieve current folder from Edit1 field
        StringGetPos, SlashPos, prevDir, \, R1 ; get position of last \
        SlashPos += 2 ; add 2 to the position so StringMid works
        StringMid, prevDir, prevDir, SlashPos ; get part of the string, from last \ to the end
      }

    ControlSend,,{BS},ahk_id %ControlHwnd% ; Sends BackSpace
    Sleep 50
    Loop, Parse, prevDir
      {
        ControlSendRaw, SysListView321, %A_LoopField%, ahk_class %class% ; Sends letters from the previous folder's name one after another to reach folder quickly
        ControlGet, testSelected, List, Selected, SysListView321, ahk_class %class% ; Checks selected folder
        If (testSelected = prevDir) { ; if selected folder is the folder we come from
            Break
          }
      }
    nbClick = 2
} Else {
    nbClick = 1
    ; checks if a file or folder is selected in the dialog box
    ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
  }
Return

Now i need to :
- find a way to ignore clicks when Desktop is active folder.
- prevent third click after double-click to be detected as a double-click (should be easy) done !

Again, thanks to Justice for showing me the first steps and for coming up with the name :)
« Last Edit: June 20, 2007, 06:17 AM by ak_ »

justice

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,898
    • View Profile
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #17 on: June 20, 2007, 07:36 AM »
Excellent stuff ak_!

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #18 on: June 20, 2007, 10:24 AM »
Thanks Justice :)

Ok i took care of another annoying bug i didn't notice : if you clicked on scrollbar then on whitespace very quickly, the program understood this as a double-click and went to parent folder.

; DaddyClick
; see http://translatecz.svarz.cz/2007/05/en-doubleclick-to-close-window.html  for similar script
; or the various help pages on ControlSend etc.
; Thanks to Justice for showing me the first steps and coming up with the name "DaddyClick" :)

#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetKeyDelay 0,0

~LButton Up::
; info about window/ control the mouse is hovering over
CoordMode Mouse,Screen
MouseGetPos,,,,ControlClass
MouseGetPos,MouseX,MouseY,id,ControlHwnd,2
WinGetClass, class, ahk_id %id%

If (class <> "#32770" and class <> "CabinetWClass" and class <> "ExploreWClass") ; if not open/save dialog OR explorer
    Gosub End
If ControlClass <> SysListView321 ;if not Clicking filelist's whiteSpace
    Gosub End

; Scrollbars detection
ControlGet cStyle, Style,,%ControlClass%, ahk_id %id%
WinGetPos winX, winY, winW, winH, ahk_id %id%
ControlGetPos ctlX, ctlY, ctlW, ctlH, %ControlClass%, ahk_id %id%
VScrollX2 := winx + ctlX + ctlW
VScrollX := VScrollX2 - 20
HScrollY2 := winy + ctlY + ctlH
HScrollY := HScrollY2 - 20

If MouseY Between %HScrollY% and %HScrollY2%
    If cStyle & 0x100000
        Gosub End
If MouseX Between %VScrollX% and %VScrollX2%
    If cStyle & 0x200000
        Gosub End

If (A_PriorHotkey = A_ThisHotkey and A_TimeSincePriorHotkey < 500 and nbClick = 1) {
    If (IsSelected = 1) ; if a file or folder is selected
        Gosub End

    ; retrieve current folder depending on the window class
    If (class = "#32770"){
        ControlGetText prevDir, ComboBox1, ahk_class %class%
      }

    If (class = "ExploreWClass" or class = "CabinetWClass") {
        ControlGetText prevDir, Edit1, ahk_class %class% ; retrieve current folder from Edit1 field
        StringGetPos, SlashPos, prevDir, \, R1 ; get position of last \
        SlashPos += 2 ; add 2 to the position so StringMid works
        StringMid, prevDir, prevDir, SlashPos ; get part of the string, from last \ to the end
      }

    ControlSend,,{BS},ahk_id %ControlHwnd% ; Sends BackSpace
    Sleep 50
    Loop, Parse, prevDir
      {
        ControlSendRaw, SysListView321, %A_LoopField%, ahk_class %class% ; Sends letters from the previous folder's name one after another to reach folder quickly
        ControlGet, testSelected, List, Selected, SysListView321, ahk_class %class% ; Checks selected folder
        If (testSelected = prevDir) { ; if selected folder is the folder we come from
            Break
          }
      }
    nbClick = 2
} Else {
    nbClick = 1
    ; checks if a file or folder is selected in the dialog box
    ControlGet, IsSelected, List, Count Selected, SysListView321, ahk_id %id%
  }
Return

End:
nbClick = 0
Exit

Now, this Desktop thing :)

ak_

  • Supporting Member
  • Joined in 2007
  • **
  • Posts: 223
    • View Profile
    • wopah
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #19 on: June 29, 2007, 01:00 PM »
"Good news everyone !"


I fixed the "desktop thing" in DaddyClick.

Moreover, in order to keep on experimenting AHK i decided to turn DaddyClick in some kind of open/save box enhancer (hm, sort of...). So i put aside the Explorer compatibility to focus on open/save boxes, so now "prent foder double-click" still works in Explorer, but not folder auto-selection. This feature was too buggy in Explorer and i felt like it was a better thing to focus on one thing and try to do the best out of it.

Anyway, i added one feature to DaddyClick : a toolbar in the caption to quickly access different drives (instead of using combo box).


Any feedback would be appreciated :)

I don't paste code right now because it's really a mess :-[

icekin

  • Supporting Member
  • Joined in 2007
  • **
  • default avatar
  • Posts: 264
    • View Profile
    • icekin.com Technology,Computers and the Internet
    • Read more about this member.
    • Donate to Member
Re: IDEA : go to parent folder with double-click
« Reply #20 on: November 09, 2007, 06:30 PM »
Is there any way to get this function in Total commander? I would be really handy.