X-Git-Url: http://git.roojs.org/?p=gnome.introspection-doc-generator;a=blobdiff_plain;f=File.js;h=77777ba32653bbf87a032ea3a8c9b0f696d16a3c;hp=f82bd6aa8eb502f0e4a355d34478fbe6e7fe29d9;hb=e5ffdec730738f1cf9dacb62516f1ad85682e1b4;hpb=92efc0ca5727e8a6de309ef332ed237550536173 diff --git a/File.js b/File.js index f82bd6a..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 * @@ -138,20 +137,32 @@ var File = { * */ 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]); + srcPath = File.join(String(fromDir), filesToCopy[index]); + destPath = File.join(String(toDir), filesToCopy[index]); - if (File.isFile(srcPath) && !File.isFile(destPath)) { + 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); - } - else if (File.isDirectory(srcPath) && !File.isDirectory(destPath)) { - File.mkdir(destPath); - } - + } }, @@ -162,6 +173,7 @@ var File = { */ mkdir : function (destPath) { var dest = Gio.file_new_for_path(String(destPath)); + return dest.make_directory(null, null); }, /** @@ -173,7 +185,7 @@ var File = { */ copyFile : function (srcPath, destPath, opts) { if (typeof(opts) =='undefined') { - opts = Gio.FileCopyFlags.NONE + opts = Gio.FileCopyFlags.NONE; } var dest = Gio.file_new_for_path(String(destPath)); var src = Gio.file_new_for_path(String(srcPath));