Looking for a tool like Fastfolders
Moderators: Hacker, petermad, Stefan2, white
Looking for a tool like Fastfolders
Hi Everybody:
I am looking for a tool like Fastfolders but compatible with Total Commander, Fastfolders site is here:
http://www.desksoft.com/FastFolders.htm
This is a very nice tool that gives you quick and easy access to
folder contents and files. Without opening each and every folder,
you can browse the directory structure starting at any point by
clicking the right mouse button on a file, folder or drive.
The problems is it works with Microsoft windows explorer.
Any ideas?
Thanks.
I am looking for a tool like Fastfolders but compatible with Total Commander, Fastfolders site is here:
http://www.desksoft.com/FastFolders.htm
This is a very nice tool that gives you quick and easy access to
folder contents and files. Without opening each and every folder,
you can browse the directory structure starting at any point by
clicking the right mouse button on a file, folder or drive.
The problems is it works with Microsoft windows explorer.
Any ideas?
Thanks.
- StickyNomad
- Power Member
- Posts: 1933
- Joined: 2004-01-10, 00:15 UTC
- Location: Germany
2tony01
Hm, I did a quick try with that tool and the FastFolders menu entry is also shown in TCs context menu. Sure any folder you open through FastFolders is opened by explorer anyway, but I tried my TC shortcut in windows' 'send to'-menu, and it works. So you can right click a folder in FFs menu and then choose send to -> Total commander. A little hassle though, but maybe it suffices for you...
If you try this, you should add '/O' as a parameter to re-use the already open TC instance.
Hm, I did a quick try with that tool and the FastFolders menu entry is also shown in TCs context menu. Sure any folder you open through FastFolders is opened by explorer anyway, but I tried my TC shortcut in windows' 'send to'-menu, and it works. So you can right click a folder in FFs menu and then choose send to -> Total commander. A little hassle though, but maybe it suffices for you...
If you try this, you should add '/O' as a parameter to re-use the already open TC instance.
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary
2tony01
You maybe could grab this AutoHotkey script and adapt it to your needs:
http://www.autohotkey.com/forum/viewtopic.php?p=4046#4046
You maybe could grab this AutoHotkey script and adapt it to your needs:
http://www.autohotkey.com/forum/viewtopic.php?p=4046#4046
I switched to Linux, bye and thanks for all the fish!
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary
2tony01
Well, this was the reason why I said adapt the script to your needs
Well, this was the reason why I said adapt the script to your needs

Code: Select all
godir:
if A_ThisMenu = DirMenu
; run %rootdir%
Run "%COMMANDER_PATH%\Totalcmd.exe" /O /T "%rootdir%"
else
; run %rootdir%\%A_ThisMenu%
Run "%COMMANDER_PATH%\Totalcmd.exe" /O /T "%rootdir%\%A_ThisMenu%"
return
I switched to Linux, bye and thanks for all the fish!
- SanskritFritz
- Power Member
- Posts: 3693
- Joined: 2003-07-24, 09:25 UTC
- Location: Budapest, Hungary