From: Alan Knowles Date: Fri, 29 Jun 2018 07:57:20 +0000 (+0800) Subject: src/strip.vala X-Git-Url: http://git.roojs.org/?p=app.mailtrimmer;a=commitdiff_plain;h=81a116f748d0aff6838949c3dae8c9c2cba7866d src/strip.vala --- diff --git a/src/strip.vala b/src/strip.vala index 5ea5750..02a0b27 100644 --- a/src/strip.vala +++ b/src/strip.vala @@ -446,6 +446,12 @@ public class Strip : GLib.Object { var fn = StripApplication.opt_target_path + "/" + file_path; var chksum = this.md5_file(fn); var mime_filename = attachment.get_header("X-strip-content-type"); + + var fileinfo = File.new_for_path(fn) + .query_info(GLib.FileAttribute.STANDARD_SIZE+","+GLib.FileAttribute.TIME_MODIFIED + ,GLib.FileQueryInfoFlags.NONE,null); + var file_size = (int) fileinfo.get_size(); + GLib.error("GOT FN: %s | PATH: %s | CT: %s", filename, file_path, mime_filename);