ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Find And Run Robot

custom file explorer ?

(1/2) > >>

nitrix-ud:
Hi,

i can't make it work as expected.



i'd like to open folder shortcuts in a new tab of a directory opus lister
unfortunately it opens in new listers every time

the command-line is :
C:\Program Files\GPSoftware\Directory Opus\dopusrt.exe /cmd Go "$$1" NEWTAB

but it seems that the NEWTAB part is just forgotten

any idea ?

mouser:
ok great post, let me see if i'm actually doing this full $$1 replacement inside custom file explorer.. it's a relative new addition and it's possible it's not being obeyed in the file explorer.

skajfes:
It works for me.... I have just copied your custom file explorer string and when i open a folder it opens in new tab on already open lister

nitrix-ud:
It works for me.... I have just copied your custom file explorer string and when i open a folder it opens in new tab on already open lister
--- End quote ---
i guess i should add that i want to open folder shortcuts in new tabs (not only folders) seems like it works for me too with real folders (i never use that...)


for those interested i found a workaround using Akete plugin and Autohotkey

Akete setting :
[Akete]
lnk=C:\_common\programs\FARR Scripts\open_lnk.ahk

and in the open_lnk.ahk file :
shortcut = %1%
if InStr(shortcut, "C:\_user\Folder Shortcuts") {
   FileGetShortcut, %shortcut%, OutTarget
   Run, C:\Program Files\GPSoftware\Directory Opus\dopusrt.exe /cmd Go "%OutTarget%" NEWTAB
}
else {
   Run, %1%
}
--- End quote ---

basically all .lnk files are "processed" by the open_lnk.ahk script (thanks to akete)
if the .lnk file is in my "folder shortcuts" folder, the target folder is extracted then passed to my "dopus command-line"

akete is a neat plugin ;)

nitrix-ud:
i still think a AketeFolder plugin would be neat ...
[AketeFolder]
C:\_user\Folder Shortcuts=C:\_common\programs\FARR Scripts\open_lnk.ahk

 :D

Navigation

[0] Message Index

[#] Next page

Go to full version