From: Alan Knowles Date: Fri, 15 Jun 2018 09:06:38 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=fdae5f83c831890b3ca244ea7e25cd252bba35d8 src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index fbe4246..c8ebbd6 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -557,7 +557,10 @@ public class Strip : GLib.Object { } GLib.debug("Creating file %s", target_fn); if (!FileUtils.test (target_fn, FileTest.EXISTS)) { - Posix.link(fn, target_fn); + var from = File.new_for_path (fn); + var to = File.new_for_path (target_fn); + from.copy(to, 0, null); + } } else { GLib.debug("Skipping extraction %s", target_fn); @@ -842,6 +845,7 @@ public class Strip : GLib.Object { GLib.debug("finished writing output %d", file_size); // + outstream = null; this.used_space_after += file_size; @@ -850,9 +854,13 @@ public class Strip : GLib.Object { if (StripApplication.opt_is_replacing) { Posix.unlink(path +"/" + name); GLib.debug("copy tmp file %s to %s" , tmpfile, path +"/" + name); - Posix.link(tmpfile, path +"/" + name); + + // link will not work, as we are doing it accross file systems + var from = File.new_for_path (tmpfile); + var nf = File.new_for_path (path +"/" + name); + from.copy(nf, 0, null); + - var nf = File.new_for_path(path +"/" + name); var newfileinfo = nf.query_info(GLib.FileAttribute.TIME_MODIFIED,GLib.FileQueryInfoFlags.NONE,null); newfileinfo.set_modification_time(mod_time); nf.set_attributes_from_info(newfileinfo,FileQueryInfoFlags.NONE);