我正在为Atom editor编写软件包。
在Mac上运行包中的fs-plus persmission denied
方法时,有人可以解决我遇到的makeTree
错误吗?在Windows上没有错误。
我使用的是fs-plus,与Atom的tree-view软件包中使用的模块相同(树形视图在Mac上也可以使用)。
UPD:添加屏幕截图和一些代码:
图中显示的“新文件夹”选项是使用相同的模块-fs-plus实现的,并且在Mac上也可以使用。我只使用相同的模块和相同的方法(fs-plus.makeTree)创建目录,但是我的实现因Permission denied error
而失败。
我的代码:
import util from 'util';
import { sep } from 'path';
import fs from 'fs-plus';
const makeTreeAsync = util.promisify(fs.makeTree);
createTutorial(data) {
const { initialPath } = this;
const { fileName } = data;
const filePath = `${initialPath}${sep}${fileName}${sep}${fileName}.md`;
return makeTreeAsync(fileName)
.then(() => writeFileAsync(filePath, this.getContent(data)))
.then(() => filePath);
},
树状视图包中的代码:
path = require 'path'
fs = require 'fs-plus'
onConfirm: (newPath) ->
newPath = newPath.replace(/\s+$/, '') # Remove trailing whitespace
endsWithDirectorySeparator = newPath[newPath.length - 1] is path.sep
unless path.isAbsolute(newPath)
// some path preprocessing
return unless newPath
try
if fs.existsSync(newPath)
@showError("'#{newPath}' already exists.")
else if @isCreatingFile
// some code, we are not interested in as we 're creating directory
else
fs.makeTreeSync(newPath)
@emitter.emit('did-create-directory', newPath)
@cancel()
catch error
@showError("#{error.message}.")
重要说明:我的软件包是手动安装(复制到~/<username>/.atom/packages
),然后运行npm i
答案 0 :(得分:0)
经过一段时间的调试,我有了解决方案。我尝试使用原生fs.mkdir
时没有运气,但是在我将mode作为第二个参数添加后-它起作用了。
const _0777 = parseInt('0777', 8);
const mode = _0777 & (~process.umask());
fs.mkdir(<folderPath>, mode, () => {});
希望,这将对某人有所帮助。