Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new file organizer #395

Merged
merged 1 commit into from
Apr 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions file_organizer/ReadME.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
File Organizer

Overview

The File Organizer is a Python script designed to help users tidy up a specific directory by sorting files into subfolders based on their file types. This tool is ideal for organizing cluttered folders like Downloads or Desktop by automatically categorizing files such as images, documents, videos, and more.

Purpose

The primary goal of this program is to:

Keep directories organized by grouping files into relevant categories.

Save time and effort by automating the file organization process.

Improve productivity by reducing clutter in frequently used directories.

Running the Script

Open your terminal or command prompt.

Navigate to the directory where the file_organizer.py script is located.

Run the script by entering the following command:

python file_ord.py

Enter the Directory Path: When prompted, provide the path to the directory you want to organize.

Enter the directory path you want to organize

The program will scan the directory and move files into appropriate subfolders.
60 changes: 60 additions & 0 deletions file_organizer/file_ord.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
import os
import shutil

def get_extension(file_name):
"""Returns the file extension for a given file name."""
return file_name.split('.')[-1].lower()

def create_folder(folder_name):
"""Creates a new folder if it doesn't already exist."""
if not os.path.exists(folder_name):
os.makedirs(folder_name)
print(f"Created folder: {folder_name}")

def move_file(file_name, folder_name):
"""Moves the file to the specified folder."""
try:
shutil.move(file_name, folder_name)
print(f"Moved '{file_name}' to '{folder_name}'")
except Exception as e:
print(f"Error moving file '{file_name}': {e}")

def organize_files(directory):
"""Organizes files in the given directory by their file type."""
os.chdir(directory)
files = [f for f in os.listdir() if os.path.isfile(f)]

if not files:
print("No files to organize in this directory.")
return

for file in files:
extension = get_extension(file)

if extension in ['jpg', 'jpeg', 'png', 'gif']:
create_folder('Images')
move_file(file, 'Images/')
elif extension in ['pdf', 'docx', 'doc', 'txt']:
create_folder('Documents')
move_file(file, 'Documents/')
elif extension in ['mp4', 'mov', 'avi']:
create_folder('Videos')
move_file(file, 'Videos/')
elif extension in ['mp3', 'wav']:
create_folder('Music')
move_file(file, 'Music/')
else:
create_folder('Others')
move_file(file, 'Others/')

def main():
print("Welcome to File Organizer!")
directory = input("Enter the directory path you want to organize: ").strip()

if os.path.isdir(directory):
organize_files(directory)
else:
print("The specified path is not a valid directory.")

if __name__ == "__main__":
main()