drewmccormack / ensembles

A synchronization framework for Core Data.
MIT License
1.63k stars 131 forks source link

Improve remote directory creation #166

Closed drewmccormack closed 9 years ago

drewmccormack commented 10 years ago

Remove directory creation is currently not very efficient. It does a fileExists... for each directory. It would be better to do a contents of root directory, and go from there. For some APIs, like Dropbox, you also get ugly log messages if the directory doesn't exist.

drewmccormack commented 9 years ago

This is now only done once per run, and if an error occurs. So probably good enough.