Set the filename path separator to '/' instead of '\'

I would like to be able to set the filename separator in filename paths to '/'.

For example, I often click on the pane's tool bar to get the full file name path (copy/paste it into another application).

I get something like this:
D:\Development\Dev\Internal Services\Prediction Module\WindowConsole\bin\Debug\BeckermanJobsInfo

All to often I paste it into a program that wants it:

D:/Development/Dev/Internal Services/Prediction Module/WindowConsole/bin/Debug/BeckermanJobsInfo

Its pretty tedious to paste it somewhere and then manually update the back splashes to forward slashes.

I painstakingly searched the options and do not see how to set this separator.

Put this in a button or hotkey, and set it to Script Function.

@script vbscript Function OnClick(ByRef clickData) DOpus.SetClip(Replace(DOpus.FSUtil.Resolve(clickData.func.sourcetab.path),"\","/")) End Function