当前位置: 首页>>代码示例>>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;未经允许,请勿转载。