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
{{ message }}
This repository has been archived by the owner on Aug 11, 2020. It is now read-only.
The local sync copies the files directly to the destination directory. If the application is terminated before the sync is complete, it will not resume the next time the application starts - e.g. the application has no way to figure out that the copy was incomplete.
suggest:
copy to temporary sibling directory
after completion do a rename, rename, delete action: old.renameTo(trash); new.renameTo(old); trash.delete();
The text was updated successfully, but these errors were encountered:
The local sync copies the files directly to the destination directory. If the application is terminated before the sync is complete, it will not resume the next time the application starts - e.g. the application has no way to figure out that the copy was incomplete.
suggest:
old.renameTo(trash); new.renameTo(old); trash.delete();
The text was updated successfully, but these errors were encountered: