Improved script and added functionality #404
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
PR Title
Enhance FileOrganizer.py with Error Handling, Duplicate File Handling, and Directory Skipping
Summary
Improved the FileOrganizer.py script by adding error handling, skipping directories, handling files without extensions, and preventing duplicate file overwrites.
Description
This PR improves the existing file organization script by making it more robust and efficient.
Key enhancements include:
Checking if the user-specified directory exists before proceeding.
Ignoring directories to prevent accidental movement.
Handling files without extensions by placing them in a NoExtension folder.
Avoiding overwriting duplicate files by renaming them instead.
The changes are as follows:
Added error handling to check if the directory exists before executing.
Skipped directories to ensure only files are moved.
Handled files without extensions by moving them to a NoExtension folder.
Prevented file overwriting by appending a counter (e.g., file1.txt → file1_1.txt).
Refactored file paths for better readability and efficiency.
Checks
in the repository
in the PR
Thank You,
Saeed Ansari