B4A Library [Lib] Archiver - Informatix Oct 01, 2015 (34 reactions) By courtesy of Djembefola, this library is released as freeware for the benefit of the community. You should send him a big "thank you".
This library provides a basic support for Zip, Tar and Gzip archives (including TarGz). It can compress/uncompress synchronously or asynchronously (one task in th B4A Code Snippet [B4X] CopyFolder / DeleteFolder - Erel Jan 10, 2019 (24 reactions) A recursive sub that copies a complete folder. Private Sub CopyFolder(Source As String, targetFolder As String) If File.Exists(targetFolder, "") = False Then File.MakeDir(targetFolder, "") For Each f As String In File.ListFiles(Source) If File.IsDirectory(Source, f) Then CopyFold B4J Library Nitrite NoSQL embedded database library - stevel05 Aug 19, 2023 (18 reactions) I was interested to try Erel's MongoDB example in a few projects but really didn't want to use a server implementation so I looked for an alternative and found the Nitrite library. This is a partial wrap of this github project Nitrite-java The documentation is pretty good and is available here: Ni B4A Library In-App Review Library - Pendrush Jan 15, 2023 (28 reactions) Download library zip file and extract archive to Additional Libraries folder. Example app will trigger OnError event in emulator. Thanks to: @ronnhdf and @Jack Cole for testing. v2.01: Library update to use com.google.android.play:review as InAppReview will be removed from com.google.android.pl B4A Example Http Server hosting a page with download link - aeric Jun 01, 2024 (2 reactions) Just a simple example with a link to a file stored in File.DirInternal. Required Archiver library. 154237 This is a response to this thread. B4J Question Archiver - DonManfred (first post) May 13, 2018 (1 reaction) Use the forumsearch for an Example
Note that the library is an Android Library. You may search the B4A Forums too B4J Code Snippet [PHP] The Ultimate File Management PHP Functions - Mashiane Sep 20, 2021 (12 reactions) * Add Dirs with Files and Subdirs. * * <code> * $archive = new FlxZipArchive; * // ..... * $archive->addDir( 'test/blub', 'blub' ); * </code> */ class FlxZipArchive extends ZipArchive { /** * Add a Dir with Files and Subdirs to the archive * * @param string $location Real Locat B4J Question Archiver [SOLVED] - moore_it (first post) Jun 03, 2021 Sub DeZippo(path As String)
Dim zipper As Archiver
For Each nf As String In File.ListFiles(path)
If nf.Contains(".zip") Or nf.Contains(".ZIP") Then
zipper.UnZip(path,nf,path,"DEZIP")
wait for DEZIP_UnZipDone(CompletedWithoutError As Boolean, NbOfFiles As Int)
If CompletedWithoutError Th B4J Question Progress indicator not updating - rwblinn (first post) Jul 22, 2015 (1 reaction) Hi,
scribbled an example (only showing unzipping) using the Informatix Archiver library (great lib = thanks to Informatix).
To note: The handling of multiple files in the example can be optimized, but its works. B4A Question [Solved] open/extract a password protected zip file - DonManfred (first post) Mar 15, 2019 Do NOT expect me to update a few years old example which was not my example!
Create your own Example using targetsdk 26, runtimepermissions and all this.
The Archiver CAN handle password protected zips. Page: 1 2 3 4 5 6 7 Powered by ColBERT |