We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
st_size
ArtifactoryFileStat
1 parent b116902 commit c0d788cCopy full SHA for c0d788c
1 file changed
artifactory.py
@@ -610,6 +610,7 @@ def _get_base_url(self, url):
610
"modified_by",
611
"mime_type",
612
"size",
613
+ "st_size",
614
"sha1",
615
"sha256",
616
"md5",
@@ -909,6 +910,7 @@ def stat(self, pathobj):
909
910
modified_by=jsn.get("modifiedBy"),
911
mime_type=jsn.get("mimeType"),
912
size=int(jsn.get("size", "0")),
913
+ st_size=int(jsn.get("size", "0")),
914
sha1=checksums.get("sha1", None),
915
sha256=checksums.get("sha256", None),
916
md5=checksums.get("md5", None),
0 commit comments