當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript shell.showItemInFolder方法代碼示例

本文整理匯總了TypeScript中electron.shell.showItemInFolder方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript shell.showItemInFolder方法的具體用法?TypeScript shell.showItemInFolder怎麽用?TypeScript shell.showItemInFolder使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在electron.shell的用法示例。


在下文中一共展示了shell.showItemInFolder方法的10個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1: open

export function open(folder: string) {
  if (os.platform() === "darwin") {
    // openItem will open the finder but it will appear *under* the app
    // which is a bit silly, so we just reveal it instead.
    shell.showItemInFolder(folder);
  } else {
    shell.openItem(folder);
  }
}
開發者ID:HorrerGames,項目名稱:itch,代碼行數:9,代碼來源:explorer.ts

示例2: openDirectorySafe

      Fs.stat(path, (err, stats) => {
        if (err) {
          log.error(`Unable to find file at '${path}'`, err)
          return
        }

        if (stats.isDirectory()) {
          openDirectorySafe(path)
        } else {
          shell.showItemInFolder(path)
        }
      })
開發者ID:Ahskys,項目名稱:desktop,代碼行數:12,代碼來源:main.ts

示例3:

      Fs.stat(path, (err, stats) => {
        if (err) {
          log.error(`Unable to find file at '${path}'`, err)
          return
        }

        if (stats.isDirectory()) {
          const fileURL = Url.format({
            pathname: path,
            protocol: 'file:',
            slashes: true,
          })
          shell.openExternal(fileURL)
        } else {
          shell.showItemInFolder(path)
        }
      })
開發者ID:tamdao,項目名稱:desktop,代碼行數:17,代碼來源:main.ts

示例4:

 (event: Electron.IpcMessageEvent, { path }: { path: string }) => {
   shell.showItemInFolder(path)
 }
開發者ID:Aj-ajaam,項目名稱:desktop,代碼行數:3,代碼來源:main.ts

示例5: onOpenProjectsFolderClick

function onOpenProjectsFolderClick() {
  electron.shell.showItemInFolder(`${settings.userDataPath}/projects`);
}
開發者ID:AgileJoshua,項目名稱:superpowers-app,代碼行數:3,代碼來源:index.ts

示例6: async

 watcher.on(actions.openAppLog, async (store, action) => {
   const path = mainLogPath();
   logger.info(`Opening app log at ${path}`);
   shell.showItemInFolder(path);
 });
開發者ID:itchio,項目名稱:itch,代碼行數:5,代碼來源:preferences.ts

示例7:

    socket.on('shell-showItemInFolder', (fullPath) => {
        const success = shell.showItemInFolder(fullPath);

        socket.emit('shell-showItemInFolderCompleted', success);
    });
開發者ID:E024,項目名稱:Electron.NET,代碼行數:5,代碼來源:shell.ts

示例8:

 .then(() => {
   shell.showItemInFolder(logPath)
 })
開發者ID:Aj-ajaam,項目名稱:desktop,代碼行數:3,代碼來源:build-default-menu.ts

示例9: showItemInFolder

 export function showItemInFolder(path: string) { electron.shell.showItemInFolder(path); }
開發者ID:MSylvia,項目名稱:superpowers-app,代碼行數:1,代碼來源:index.ts

示例10:

 process.nextTick(function () {
     shell.showItemInFolder(utils.convertBracketsPathToWindowsPath(getExtensionsFolder()));
     if (callback) { callback(); }
 });
開發者ID:Real-Currents,項目名稱:brackets,代碼行數:4,代碼來源:app.ts


注:本文中的electron.shell.showItemInFolder方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。