Foldora is a Python command-line interface (CLI) tool designed to help you efficiently manage files and directories.
Foldora provides essential file and directory management commands:
- π List files and directories
- π Create directories and files
- π§Ή Delete (purge) files and directories
- π Display file contents
- βοΈ Replace spaces in file and folder names with underscores
Install Foldora from PyPI:
pip install foldoraNote: Ensure Python is installed and available in your system path.
Run Foldora using the fd command followed by the desired operation.
List the files and directories within one or more specified paths.
If no paths are provided, the current working directory is used.
Command:
fd la [paths] [--files] [--dirs]Notes:
- If a specified path is a file, only that file will be listed.
- Hidden files and directories may be included depending on your system settings.
- Multiple paths can be provided to list contents from different directories simultaneously.
Examples:
fd la
fd la --files
fd la --dirs
fd la --files /path/to/dir
fd la --dirs /path/to/dir
fd la --files /path1 /path2
fd la --dirs /path1 /path2Create one or more directories.
All necessary parent directories are created automatically if they do not exist.
Command:
fd nd [paths]Notes:
- Does not modify existing directories.
- Supports creating multiple directories in a single command.
Examples:
fd nd directory1 directory2
fd nd /path/to/parent/new_directoryCreate one or more empty files in the current directory or a specified path.
Command:
fd nf '[-tp path_to_dir]' [filenames]Notes:
- Supports creating multiple files in one command.
- Existing files will not be overwritten.
- If the specified directory does not exist, an error will be raised.
Examples:
fd nf file1.txt file2.txt
fd nf -tp /path/to/dir file1.txt file2.txtPermanently delete specified files and directories, with user confirmation before proceeding.
Command:
fd pg [paths]Notes:
- Use with caution β this action cannot be undone.
- Directories are deleted recursively, including all contents.
- Requires proper permissions to delete the specified paths.
Examples:
fd pg file1 directory1Display the contents of one or more files in the console.
Command:
fd vc [files]Notes:
- Files must be readable.
- Supports multiple files β each fileβs content is displayed in sequence.
Examples:
fd vc file1.txt file2.txtRename files and folders by replacing spaces in their names with underscores.
Command:
fd fs [path]Notes:
- Defaults to the current directory if no path is specified.
- By default, only top-level files and folders are renamed.
Examples:
fd fs
fd fs /path/to/dirContributions are welcome!
Feel free to open issues or submit pull requests to help improve Foldora.
This project is licensed under the MIT License.