Comments
-
I tried deleting about 1400 files, and it seems that they can be deleted without any problem. At least deleteBatch: doesn't seem to have a limit of 1000 deletes. However, when I use deleteBatchCheck: to wait for all deletions to finish, it seems to take more than 10 minutes to finish in my environment.
-
Thank you for your reply. I understand that there is currently no good way. And I hope that a solution will be provided.
-
Thank you very much. I can now reliably handle it in the following way: 1) Unshare the folder and wait until it is complete. 2) Wait for the folder to be re-added. 3) Delete the folder. Note that I get a "too_many_write_operations" error when I try to delete the re-added folder immediately. So I need to wait a bit for the…
-
Thank you for your reply. Is there a way to distinguish between the original folder and the re-added folder?
-
Thank you for your reply. I understand why the deleted files are restored. So I tried the following. 1) Unshare the folder using "unshare Folder:". 2) Wait for the above completion until "result.isComplete" becomes true using "checkJobStatus:". 3) After finishing the above, delete the above folder using "delete_v2:". The…