You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently think it is a non-goal to manage folder syncing behind the scenes, but we might want to explicitly support it as a method.
For example, something like:
# I have a local folder that has many changes in it, including file deletionslocal_changes="/work_in_progress"# copies cloud versions down to disk, but skips dl'ing where possible; deletes extra files locallyS3Path("s3://bucket/project_storage").sync_down(local_changes)
# copies local versions up to cloud, but skips ul'ing where possible; deletes extra files on the cloudS3Path("s3://bucket/project_storage").sync_up(local_changes)
The text was updated successfully, but these errors were encountered:
We currently think it is a non-goal to manage folder syncing behind the scenes, but we might want to explicitly support it as a method.
For example, something like:
The text was updated successfully, but these errors were encountered: