Atom在特定目录中使用API​​创建新文件

时间:2018-11-09 17:35:39

标签: javascript jquery node.js coffeescript atom-editor

我要执行的操作是在保存之前在特定目录中复制文件。

@sss= new CompositeDisposable
@sss.add atom.workspace.observeTextEditors (editor)=>
    @sss.add editor.buffer.onWillSave => # BUG: this is not working till I lunch web browser
        #if atom.config.get("search-the-web.browser.verbose_backup_directory") is not 'null'
        file_prefix = new Date().toLocaleString().replace(/(\d+)\/(\d+)\/(\d+).*?(\d+):(\d+):(\d+) .*/,"$3$1$2$4$5$6")
        copyPath = atom.config.get("search-the-web.browser.verbose_backup_directory") + editor.buffer.file.path.replace(/(.):/,"\\$1").replace(/(\.(?:.(?!\.))+$)/,"-#{file_prefix}$1")
        console.log(copyPath);

文件Doc:https://atom.io/docs/api/v1.31.2/File
目录文档:https://atom.io/docs/api/v1.31.2/Directory

我无法理解atom.io网站上的文档,也没有在互联网上找到任何相关答案,有人可以帮忙吗?我正在使用咖啡脚本

1 个答案:

答案 0 :(得分:0)

import {File} from 'atom'
const myFile = new File("d:\\hello.txt");
myFile.write("testing");

在这里我找到了解决方案。