Skip to main content

A simple folder management library designed to manage folders and files. It provides functionalities to create, list, count, and delete files and folders, making it a versatile tool for file management. The package is designed to be OS-independent, ensuring compatibility with both Windows and Unix-based systems.

Project description

folder_manager

folder_manager is a Python package designed to manage folders and files. It provides functionalities to create, list, count, and delete files and folders, making it a versatile tool for file management. The package is designed to be OS-independent, ensuring compatibility with both Windows and Unix-based systems.

Features

  • Create Folder: Create a new folder at a specified path.
  • List Files: List all files in a specified folder.
  • Count Files: Count the number of files in a specified folder.
  • List Files with Specific Extension: List all files in a specified folder with a specific extension.
  • Count Files with Specific Extension: Count the number of files in a specified folder with a specific extension.
  • Create File: Create a new file with optional content.
  • Delete File: Delete a specified file.
  • Delete Folder: Delete a specified folder and all its contents.
  • Check Folder Exists: Check if a specified folder exists.
  • Check File Exists: Check if a specified file exists.

Requirements

  • Python 3.x

Installation

Install the package via PyPI using pip:

pip install folder_manager

Usage

Importing the Package

To use the folder_manager package, import it into your Python script:

from folder_manager import Folder

Creating an Instance

To create an instance of the Folder class, provide the path to the folder you want to manage.

folder = Folder("/path/to/folder")

Examples

  1. Create a Folder:

    folder = Folder("/path/to/folder")
    try:
        result = folder.create_folder()
        print(result)  # Returns True if the folder was created successfully
    except FolderError as e:
        print(e)
    
  2. List Files in a Folder:

    folder = Folder("/path/to/folder")
    try:
        files = folder.list_files()
        print(files)  # Returns a list of filenames in the folder
    except FolderError as e:
        print(e)
    
  3. Count Files in a Folder:

    folder = Folder("/path/to/folder")
    try:
        file_count = folder.count_files()
        print(f"Number of files: {file_count}")  # Returns the number of files in the folder
    except FolderError as e:
        print(e)
    
  4. List Files with Specific Extension in a Folder:

    folder = Folder("/path/to/folder")
    extension = "txt"
    try:
        files_with_extension = folder.list_files_with_extension(extension)
        print(f"Files with extension .{extension}: {files_with_extension}")  # Returns a list of filenames with the specified extension
    except FolderError as e:
        print(e)
    
  5. Count Files with Specific Extension in a Folder:

    folder = Folder("/path/to/folder")
    extension = "txt"
    try:
        file_count_with_extension = folder.count_files_with_extension(extension)
        print(f"Number of files with extension .{extension}: {file_count_with_extension}")  # Returns the number of files with the specified extension
    except FolderError as e:
        print(e)
    
  6. Create a File:

    folder = Folder("/path/to/folder")
    try:
        result = folder.create_file("file.txt", "Hello, World!")
        print(result)  # Returns True if the file was created successfully
    except FolderError as e:
        print(e)
    
  7. Delete a File:

    folder = Folder("/path/to/folder")
    try:
        result = folder.delete_file("file.txt")
        print(result)  # Returns True if the file was deleted successfully
    except FolderError as e:
        print(e)
    
  8. Delete a Folder:

    folder = Folder("/path/to/folder")
    try:
        result = folder.delete_folder()
        print(result)  # Returns True if the folder was deleted successfully
    except FolderError as e:
        print(e)
    
  9. Check if a Folder Exists:

    folder = Folder("/path/to/folder")
    if folder.folder_exists():
        print("Folder exists.")
    else:
        print("Folder does not exist.")
    
  10. Check if a File Exists:

    folder = Folder("/path/to/folder")
    if folder.file_exists("file.txt"):
        print("File exists.")
    else:
        print("File does not exist.")
    

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

Author

Javer Valino

Acknowledgments

  • Thanks to the open-source community for providing the tools and inspiration for this project.
  • Special thanks to all contributors and users of the package.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

folder_manager-1.1.0.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

folder_manager-1.1.0-py3-none-any.whl (3.6 kB view details)

Uploaded Python 3

File details

Details for the file folder_manager-1.1.0.tar.gz.

File metadata

  • Download URL: folder_manager-1.1.0.tar.gz
  • Upload date:
  • Size: 3.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for folder_manager-1.1.0.tar.gz
Algorithm Hash digest
SHA256 8104e58e2914b028df574e6a1c86602e03319cc94f22c55032418864ff78cbc9
MD5 487200b4818b88093fd5312c9930a9a3
BLAKE2b-256 2f7b8f5442c81922ebb20dee48ea6de9b6519a35d814f581fe7352150bc9cf82

See more details on using hashes here.

File details

Details for the file folder_manager-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for folder_manager-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7fbdcab141f1800621b362cd5eaf2b59829f45a7cda731d41f15a2fa21d4503d
MD5 7793edf8117c14dcf8f6bbdfa675b397
BLAKE2b-256 38e501f65aa4659de7c360c72d8174b11ee289331ffa727f04aec2a6c5685b92

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page