跳转到主内容

webUtils

一个与Web API 对象交互的工具层 (Files、 Blobs 等)

进程: Renderer

方法

webUtils模块有以下方法:

webUtils.getPathForFile(file)

  • file File - Web File 对象.

返回 string - 此 File 对象指向的文件系统路径。 如果转入的对象不是一个 File 对象,则会抛出异常。 如果传入的文件对象是在 JS中构建的并且不在在磁盘上的文件存在,则返回一个空字符串。

This method superseded the previous augmentation to the File object with the path property. 下面是一个例子。

// 之前
const oldPath = document.querySelector('input').files[0].path

// 现在
const { webUtils } = require('electron')
const newPath = webUtils.getPathForFile(document.querySelector('input').files[0])