Skip to content

Releases: Tristan296/FileManager

File_Manager v3.0

15 Aug 02:11
Compare
Choose a tag to compare

What's Changed

  • Share with drop box and google drive (not yet implemented)

  • Compress to BZ2

  • Compress to ZIP

  • Unzip

  • Duplicate

  • Get File Details - File Path, Size (bytes), Last modified date (format: YYYY-MM-DD HH:MM:SS), Date created (format: same as last modified date)

  • Batch Renaming with pattern e.g:
    file1_1.txt
    file1_2.txt
    file.txt
    file8.txt

    naming pattern: text-file1
    files renamed to:

    text-file1_1.txt
    text-file1_2.txt
    text-file1_3.txt
    text-file1_4.txt

Full Changelog: v2.0...v3.0

File_Manager v2.0

07 May 08:01
Compare
Choose a tag to compare

Changed to use PyQt5 as it has improved support for file managers and better widget styling.

File_Manager v1.1

03 May 09:07
Compare
Choose a tag to compare
  • Added ListBox to show preview all of files inside folder path
  • Changed theme

File_Manager

26 Apr 09:18
Compare
Choose a tag to compare

The file manager application has been written in Python using the PySimpleGUI library. It provides a GUI interface for users to search, open, and move files with specific filename and file type as well as finding files without a known path. The FileSearcher class is used to search for files recursively in a directory tree, and the shutil and os modules to move and open files respectively. The PySimpleGUI layout is defined as a list of nested lists, and the event loop is used to process user input. The code responds to user input by displaying popup messages and executing the corresponding file management functions.