DropboxSync.py cannot handle these cases correctly.
When encounter a hidden file or directory, it will raise OSError: no such file or directory.
if not os.path.exists(local_folder):
os.mkdir(local_folder)
Maybe iOS does not allow app to create a hidden file or directory inside the container? Can we simply skip these files and directories?