From 7b5e7eb2c4484aae6ed6cec56ff3a8e1be3c0dcd Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 11 Jan 2020 23:10:33 -0500 Subject: [PATCH] directory thanks to BorisCarvajal in issue #233 comment --- archive.d | 2 ++ jni.d | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/archive.d b/archive.d index 2e772a2..7c3fb87 100644 --- a/archive.d +++ b/archive.d @@ -129,6 +129,8 @@ bool processTar( *header = *(cast(TarFileHeader*) dataBuffer.ptr); auto s = header.size(); *bytesRemainingOnCurrentFile = s; + if(header.type() == TarFileType.directory) + handleData(header, true, false, null); if(s == 0 && header.type == TarFileType.normal) return false; } diff --git a/jni.d b/jni.d index a191538..cd3d3be 100644 --- a/jni.d +++ b/jni.d @@ -1812,6 +1812,11 @@ string javaObjectToString(IJavaObject i) { return "FIXME"; } +T as(T, R)(R obj) { + // FIXME: this will have to do downcasts to interfaces + return T.init; +} + static T fromExistingJavaObject(T)(jobject o) if(is(T : IJavaObject) && !is(T == interface)) { import core.memory;