From 508fa440c0ae7f01c85cadba5e22c82bb32a12b7 Mon Sep 17 00:00:00 2001 From: alan Date: Mon, 19 Apr 2010 11:22:46 +0800 Subject: [PATCH] File.js --- File.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/File.js b/File.js index 65e5e95..42d20e3 100755 --- a/File.js +++ b/File.js @@ -88,7 +88,12 @@ var File = { var can = f.resolve_relative_path(''); return can.get_path(); }, - + /** + * write + * @arg path {String} File to write to + * @arg string {String} Contents of file. + * + */ write : function (path, string) { var f = Gio.file_new_for_path(String(path)); var data_out = new Gio.DataOutputStream({base_stream:f.replace(null, false, Gio.FileCreateFlags.NONE, null)}); -- 2.39.2