SimpleStorage
SimpleStorage copied to clipboard
Some useful suggestions
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:)