Ash515 / AutomaDesk

Desktop Files Organizing Automation
19 stars 31 forks source link

Created the GUI automated app #8

Open ascendantaditya opened 1 month ago

ascendantaditya commented 1 month ago

The script creates a GUI window with a button labeled "Organize Files". When this button is clicked, it triggers the organize_files function which organizes the files in the selected directory based on their extensions.

The script categorizes files into 'Images', 'Documents', 'Videos', and 'Music' based on predefined rules. It creates these folders in the selected directory and moves the files into their respective folders. If a folder doesn't exist, the script creates it.

Once the organization is complete, a message box appears to inform you that the files have been organized successfully.

The main window for the GUI is created using window = tk.Tk(). A button to trigger file organization is added using organize_button = tk.Button(window, text='Organize Files', command=organize_files). The button is then packed into the window using organize_button.pack(). The main event loop for the GUI is started using window.mainloop().

ascendantaditya commented 1 month ago

I've created the GUI window with a button labeled "Organize Files". When this button is clicked, it triggers the organize_files function . Where you can add files as well as delete files too

ascendantaditya commented 1 month ago

image

That's it , it will save the data to sqlite database