How can I change the folders shown in the file-dialogue when using DO-compression-commands? I especially would like to remove the bibliothek-folders and set a default folder (if possible).
Edit: Bit off-topic, but is DO able to continue extraction on corrupt files (WinRAR has got an option for that and I have its unrar.dll activated)?
The default output folder for Copy ADDTOARCHIVE (assuming that is what we are talking about) is the current folder if the HERE argument is present, and the destination folder otherwise.
So you could change it to a custom default by using a script which sets a different destination folder:
@script
Option Explicit
Function OnClick(ByRef clickData)
clickData.Func.command.SetDest("C:\")
clickData.Func.command.RunCommand "Copy ADDTOARCHIVE"
End Function
I don't think Opus will continue after an error in an archive. (BTW: If you know something is off-topic to a thread, don't post it in the thread, please. Start a new thread for it.)
Although the script above is quite simple, we figured you should be able to do this without needing a script, so the next version will make this work:
Copy TO=C:\ ADDTOARCHIVE
(Currently the TO argument is ignored if ADDTOARCHIVE is used.)