Hello, I encounter a problem, I download several zip files by ftp and unzip when some do it in the specified directory and others in a subdirectory with the file name, example:
I have files YYYY.zip and XXXX.zip
In the "/aaa/" are the files that were inside "XXXX.zip"
Now do the same with "YYYY.zip"
Strangely, in the "/aaa/" are not the files that were inside "YYYY.zip", but are in the directory: "/aaa/YYYY/" 
How I can do to always decompress in "/aaa/"?
Thanks and regards.
I have files YYYY.zip and XXXX.zip
B4X:
Dim zzz As Archiver
zzz.AsyncUnZip( "/aaa/", "XXXX.zip", "/aaa/", "zzz")
Now do the same with "YYYY.zip"
B4X:
Dim zzz As Archiver
zzz.AsyncUnZip( "/aaa/", "YYYY.zip", "/aaa/", "zzz")
How I can do to always decompress in "/aaa/"?
Thanks and regards.