Electron open file/directory in specific application

While the accepted answer does say how to open the folder in file explorer, it doesn't answer the question on how to open the folder WITH an external program like VSCode. It can be done like so:

import { spawn, SpawnOptions } from "child_process";
import { pathExists } from "fs-extra";

const editorPath = "C:/Program Files/Microsoft VS Code/Code.exe";

export const launchExternalEditor = async (
  folderPath: string
): Promise<void> => {
  const exists = await pathExists(editorPath);
  if (!exists) {
    console.error("editor not found");
  }

  const opts: SpawnOptions = {
    // Make sure the editor processes are detached from the Desktop app.
    // Otherwise, some editors (like Notepad++) will be killed when the
    // Desktop app is closed.
    detached: true,
  };

  spawn(editorPath, [folderPath], opts);
};

This will launch the folder in VSCode as it's root directory. Code is taken from this repository.

Note: this may require some tinkering depending on what program you are trying to use, but so far it worked properly with: VSCode, Visual Studio 2019, Intellij IDEA, NetBeans.


You can open a file or folder through shell commands from the electron module. The commands work on both main and renderer process.

const {shell} = require('electron') // deconstructing assignment

shell.showItemInFolder('filepath') // Show the given file in a file manager. If possible, select the file.
shell.openPath('folderpath') // Open the given file in the desktop's default manner.

More info on https://github.com/electron/electron/blob/master/docs/api/shell.md


For display native system dialogs for opening and saving files, alerting, etc. you can use dialog module from electron package.

const electron = require('electron');
var filePath = __dirname;
console.log(electron.dialog.showOpenDialog)({
  properties:['openFile'],
  filters:[
    {name:'Log', extentions:['csv', 'log']}
  ]
});

A very prompt explanation is provided at Electron Docs.