Created
June 28, 2010 15:56
-
-
Save azu/456001 to your computer and use it in GitHub Desktop.
ファイルの作成して書き込み #NILScript
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name new_script | |
// @namespace http://efcl.info/ | |
// @description ファイルの作成→書き込み | |
// @author azu | |
// @homepage http://efcl.info/ | |
// @twitter https://twitter.com/azu_re | |
// ==/UserScript== | |
// ファイルパスにcontentを入れたファイルを作成する。 | |
// pathはファイル名のみだとスクリプトと同じ場所に作成する | |
function newFile(path , content){ | |
if(path.indexOf("\\") == -1){ | |
var fileNmae = "test.txt"; | |
var path = Main.scriptDirectory + "\\"+ fileNmae; | |
} | |
// return fileStreamOperationMixin | |
var file = (new File(path)); | |
// 中身があっても消える | |
file.update(content) | |
} | |
newFile("test.txt" , <>// ==UserScript== | |
// @name new_script | |
// @namespace http://efcl.info/ | |
// @description | |
// @author azu | |
// @homepage http://efcl.info/ | |
// @twitter https://twitter.com/azu_re | |
// ==/UserScript== | |
</>) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment