SimpleStorage icon indicating copy to clipboard operation
SimpleStorage copied to clipboard

Some useful suggestions

Open axb996 opened this issue 1 year ago • 0 comments

Some libraries I found when using DocumentFile to implement some functions, which can be used to enhance some functions of SimpleStorage

handle-path-oz When using SimpleStorage's openFile to get an image, you cannot directly get the [absolutePath] of the image file. Using this library, you can get the real path of the image (/storage/emulated/0/XXXX).

StreamZip Using this library, you can quickly read the [ZipEntry] in the zip file, which means that you can decompress the specified file in the zip (just get its ZipEntry) and speed up the decompression.

Since it is quick and convenient to get the ZipEntry of the zip file, we can add up the [uncompressedSize] of all ZipEntry and use [bytesDecompressed] to get the real-time progress of the decompression.

I hope SimpleStorage will become better:)

axb996 avatar Jul 14 '24 09:07 axb996