And another thing. When I archive files a several times in a row, the result archive is empty.
archive files -> send to dropbox;
receive and modify files;
archive files -> there are i get empty archive.
I seem to have a similar problem. Using Textastic on an iPad 2, I try to zip two small files and a folder which itself contains a couple hundred small files. When i transfer the results to my Mac and unzip, sometimes only the folder reappears not the other two files.
The problem will be fixed in the next update.
Here is some background information: I am using a zip library which is using the "fopen" function to open files and "fread" to read their contents when creating the zip file. Unfortunately, the code never called "fclose". So while creating the zip file, the app would run out of file handles and silently fail to add all files to the zip file. I added a call to "fclose" after each file was written to the zip file and now it works correctly.
Customer support service by UserEcho
The problem will be fixed in the next update.
Here is some background information: I am using a zip library which is using the "fopen" function to open files and "fread" to read their contents when creating the zip file. Unfortunately, the code never called "fclose". So while creating the zip file, the app would run out of file handles and silently fail to add all files to the zip file. I added a call to "fclose" after each file was written to the zip file and now it works correctly.