shell

    Process: Main, (non-sandboxed only)

    The shell module provides functions related to desktop integration.

    An example of opening a URL in the user’s default browser:

    Note: While the shell module can be used in the renderer process, it will not function in a sandboxed renderer.

    The shell module has the following methods:

    • fullPath string

    shell.openPath(path)

    • string

    Returns Promise<string> - Resolves with a string containing the error message corresponding to the failure if a failure occurred, otherwise “”.

    Open the given file in the desktop’s default manner.

    • url string - Max 2081 characters on windows.
    • options Object (optional)
      • activate boolean (optional) macOS - true to bring the opened application to the foreground. The default is true.

    Returns Promise<void>

    Open the given external protocol URL in the desktop’s default manner. (For example, mailto: URLs in the user’s default mail agent).

    shell.trashItem(path)

    • path string - path to the item to be moved to the trash.

    Returns Promise<void> - Resolves when the operation has been completed. Rejects if there was an error while deleting the requested item.

    Play the beep sound.

    • shortcutPath string
    • operation string (optional) - Default is create, can be one of following:
      • create - Creates a new shortcut, overwriting if necessary.
      • update - Updates specified properties only on an existing shortcut.
      • replace - Overwrites an existing shortcut, fails if the shortcut doesn’t exist.

    Returns boolean - Whether the shortcut was created successfully.

    Creates or updates a shortcut link at shortcutPath.

    • shortcutPath string

    Returns ShortcutDetails

    Resolves the shortcut link at .