From 81a116f748d0aff6838949c3dae8c9c2cba7866d Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 29 Jun 2018 15:57:20 +0800 Subject: [PATCH] src/strip.vala --- src/strip.vala | 6 ++++++ 1 file changed, 6 insertions(+) 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); -- 2.39.2