X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=File.js;h=77777ba32653bbf87a032ea3a8c9b0f696d16a3c;hp=65f00037310105d0aca5e966e32525cf75ca6b80;hb=f97b7efe182b819e8f6143b7aeb9fd45c7ab75f0;hpb=65c71aa09951d5fab57ded05432df8ca646340b1 diff --git a/File.js b/File.js index 65f0003..77777ba 100755 --- a/File.js +++ b/File.js @@ -2,8 +2,7 @@ GLib = imports.gi.GLib; Gio = imports.gi.Gio; -imports['String.js'].load(String); - +String = imports.String.String; /** * @namespace File * @@ -88,6 +87,7 @@ var File = { var can = f.resolve_relative_path(''); return can.get_path(); }, + /** * write * @arg path {String} File to write to @@ -114,37 +114,85 @@ var File = { data_out.put_string(string, null); data_out.close(null); }, - // copy files recursively from fromDir, silently ignore them if they already exist in toDir - silentRecursiveCopy : function (fromDir, toDir) { + /** + * remove + * Delete a file. + * @arg path {String} File to remove + * + * + */ + remove : function (path) + { + var f = Gio.file_new_for_path(String(path)); + return f['delete'](); + }, + /** + * silentRecursiveCopy + * copy files recursively from fromDir, silently ignore them if they already exist in toDir + * unless you select overwrite.. + * @arg {String} src source path + * @arg {String} dest destination path + * @arg {Gio.FileCopyFlags} options (optional) - use Gio.FileCopyFlags.OVERWRITE to + * otherwise they will not be copied + * + */ + silentRecursiveCopy : function (fromDir, toDir, opts) { + var filesToCopy = File.recursiveListing(fromDir); var srcPath, destPath, src, dest; - + if (typeof(opts) =='undefined') { + opts = Gio.FileCopyFlags.NONE; + } + for (var index in filesToCopy) { - srcPath = File.join(String(fromDir), filesToCopy[index]); - destPath = File.join(String(toDir), filesToCopy[index]); - - if (File.isFile(srcPath) && !File.isFile(destPath)) { - File.copyFile(srcPath, destPath); - } - else if (File.isDirectory(srcPath) && !File.isDirectory(destPath)) { - File.mkdir(destPath); - } + srcPath = File.join(String(fromDir), filesToCopy[index]); + destPath = File.join(String(toDir), filesToCopy[index]); + if (File.isDirectory(srcPath) && !File.isDirectory(destPath)) { + File.mkdir(destPath); + continue; + } + // source is not file..?!?!? + if (!File.isFile(srcPath)) { + continue; + } + if (File.isFile(destPath) && opts == Gio.FileCopyFlags.NONE) { + // do not overwrite.. - if file exists and we are not flaged to overwrite. + continue; + } + + File.copyFile(srcPath, destPath, opts); + } }, - + + /** + * mkdir + * make a directory.. + * @arg {String} dstPath directory to make + */ mkdir : function (destPath) { var dest = Gio.file_new_for_path(String(destPath)); + return dest.make_directory(null, null); }, - - copyFile : function (srcPath, destPath) { + /** + * copyFile + * @arg {String} src source path + * @arg {String} dest destination path + * @arg {Gio.FileCopyFlags} options (optional) - use Gio.FileCopyFlags.OVERWRITE to .. overwrite.. + * + */ + copyFile : function (srcPath, destPath, opts) { + if (typeof(opts) =='undefined') { + opts = Gio.FileCopyFlags.NONE; + } var dest = Gio.file_new_for_path(String(destPath)); var src = Gio.file_new_for_path(String(srcPath)); // a bit of a hack for the fact that Gio.File.copy arguments // can be nulled, but not according to the GIR file - return src.copy(dest, Gio.FileCopyFlags.NONE); + return src.copy(dest, opts); }, recursiveListing : function (dir) {