Releases: hammy275/python-movefile-restart
Releases · hammy275/python-movefile-restart
Version 1.0.1
Version 1.0.0
First full release!!!!
- Use
__main__.py
(may need to make some fixes for it) - Make conflict checking when adding an operation optional.
Version 0.6.0
- Adds a CheckPermissions() function to check for read/write capabilities without throwing an error at runtime.
NOTE: Programs should still check for PermissionError
s when using this library, as the permissions could change between calling CheckPermissions()
and the running of the actual function.
Version 0.5.0
You no longer need to use from movefile_restart import movefile_restart
. Instead, import movefile_restart
should do the trick.
Version 0.4.0
Things added since v0.3.0:
- A file queued to be moved can be deleted if the destination is specified
- When running a file operation, the registry key that is edited is opened immediately before using it to prevent permission errors from occurring that the program isn't ready for.
Version 0.3.0
Features since 0.2.0:
- Ability to de-queue file operations by index
- Handle lack of permissions to read and write to the registry key
Version 0.2.0
Added GetFileOperations() and PrintFileOperations()
Version 0.1.1
Initial release. Currently supports moving/renaming and deleting of files in the queue.