javascript - open bridge to specific folder
I have an Electron app and I want to have a button that opens a selected folder in bridge.
I can open Bridge from the button, but I can't figure out how to tell Bridge to open a specific folder.
Is it possible? I am using fairly old version of electron, but since it does open I don't think that is an issue. I feel like there is just a different way to pass in the folder.
here is what I have:
const openInBridge = (folderPath: string) => {
const bridgePath = path.join(
'C:/Program Files/Adobe/Adobe Bridge 2024/Adobe Bridge.exe'
);
shell.openExternal(`${bridgePath}`);
};I've tried passing in a path after the bridge path, also with -f then the path.
Any ideas?
