Somethimes i get error too many write operations when uploading multiple small files at once.
So I decided to upload them in session. But I can't seem to find the correct example of uploading.
In documentation it says UploadSessionStartArg.close or UploadSessionAppendArg.close needs to be true for the last upload_session/start or upload_session/append_v2 call.
But in this example close parameter is always true https://github.com/dropbox/dropbox-sdk-js/issues/80#issuecomment-283189888
And there is no usage of sessionAppend.
So my question is should I use uploadSessionStart for every new file I am uploading, like in example above?