Skip to main content

A Python library for efficient directory and file navigation

Project description

PyPI Docs Test

PathNavigator

PathNavigator is a Python package designed to navigate directories and files. It provides tools to interact with the filesystem, allowing users to create, delete, and navigate folders and files, while also maintaining an internal representation of the directory structure. Customized shortcuts can be added. The paths are stored as Path objects from pathlib, which adapt automatically across platforms.

Installation

pip install PathNavigator

Install the latest version from GitHub repo:

pip install git+https://github.com/philip928lin/PathNavigator.git

Getting Started

import pathnavigator

# Initialize PathNavigator
pn = pathnavigator.create("root_dir")

# Retrieve paths
pn.folder1.get()        # Full path as a Path object
pn.folder1.get_str()    # Full path as a string
pn.folder1.get("file.txt")  # Path to a file

# Manage shortcuts
pn.folder1.set_sc("my_folder")  # Shortcut for folder1
pn.folder1.set_sc("my_file", "file.txt")  # Shortcut for file.txt
pn.sc.get("my_file")  # Retrieve shortcut

# Directory operations
pn.folder1.mkdir("subfolder")  # Create subfolder
pn.folder1.remove("subfolder")  # Delete subfolder
pn.folder1.exists("file.txt")  # Check existence

# List contents
pn.folder1.list(type="folder")  # List subfolders
pn.folder1.list(type="file")    # List files

# Visualize structure
pn.tree()  # Print directory tree that has been scanned by pathnavigator

Features

  • Path Retrieval: Access full paths as Path objects or strings.
  • Directory Management: Create, delete, and check existence of files/folders.
  • Shortcuts: Add, retrieve, and manage shortcuts for quick access. Save or load existed shortcut configuration.
  • Customized Folder Scan and List: Scan or list files or subfolders with filtering options.
  • Tree Visualization: Print a visual representation of the directory structure.
  • Built-in User and OS Info: Automatically detect username and operation system.
  • System Path Management: Add directories to sys.path.
  • Change Directory: Set a folder as the working directory.

Directory and File Operations

# Returns the full path to folder1.
pn.folder1.get()        # Return a Path object
pn.folder1.get_str()    # Return a string

# Return the full path to file1.
pn.get("folder1/file.csv")      # Return a Path object
pn.folder1.get_str("file.csv")  # Return a string

# Rrints the contents (subfolders and files) of folder1.
pn.folder1.ls()         

# Make the nested directories.
# Directory root/folder1/subfolder1/subsubfolder2 will be created
pn.folder1.mkdir("subfolder1/subsubfolder2")

# Removes a file or a folder and deletes it from the filesystem including all nested items.
# The following code will delete the directory of root/folder1/folder2
pn.folder1.remove('folder2')    

# Combine folder1 directory with "subfolder1/fileX.txt" and return it.
pn.folder1.join("subfolder1", "fileX.txt") 

# Or, you can utilize Path feature to join the paths.
pn.folder1.get() / "subfolder1/fileX.txt"

Check the existence of a file or subfolder

pn.folder1.exists("fileX.txt")
pn.folder1.exists("subfolder")

System Path Management

# Add the directory to folder1 to sys path.
pn.forlder1.add_to_sys_path()   

Changing Directories

# Change the working directory to folder2.
pn.forlder1.forlder2.chdir()    

Listing folders or files

# List all directories
pn.forlder1.list()
# List all subfolders
pn.forlder1.list(type="folder")
# List all files
pn.forlder1.list(type="file")

Shortcuts Management

Add shortcuts

# Set a shortcut named "f1" to folder1.
# Can be accessed by pn.sc.f1 or pn.sc.get("f1") or pn.sc.get_str("f1").
pn.folder1.set_sc("f1")

# Set a shortcut named "x" to the file "x.txt" in folder1.
# Can be accessed by pn.sc.x or pn.sc.get("x") or pn.sc.get_str("x").
pn.folder1.set_sc("x", "x.txt")
pn.folder1.set_all_files_to_sc() # set all files in the current directory to shortcuts

# Directly add shortcuts in pn.sc
pn.sc.add('f', pn.folder1.get("file"))  
pn.sc.add('f', r"new/path")  
pn.sc.add_all_files(directory=pn.folder1.get())

Retrieve shortcuts

# Retrieve the path of "f1" shortcut
pn.sc.f1
pn.sc.get("f1")  
pn.sc.get_str("f1") 

Other shortcut operations

# Print all shortcuts
pn.sc.ls()       

# Remove a shortcut
pn.sc.remove('f')   

# Return a dictionary of shortcuts
pn.sc.to_dict()  

# Output of shortcuts json file
pn.sc.to_json(filename)  

# Output of shortcuts yaml file
pn.sc.to_yaml(filename)

# Load shortcuts from a dictionary
pn.sc.load_dict()  

# Load shortcuts from a json file
pn.sc.load_json(filename)  

# Load shortcuts from a yaml file
pn.sc.load_yaml(filename)  

API reference

Docs

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

pathnavigator-0.6.3.tar.gz (15.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pathnavigator-0.6.3-py2.py3-none-any.whl (17.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file pathnavigator-0.6.3.tar.gz.

File metadata

  • Download URL: pathnavigator-0.6.3.tar.gz
  • Upload date:
  • Size: 15.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pathnavigator-0.6.3.tar.gz
Algorithm Hash digest
SHA256 ef98fb12fa9c1957e40b337cb2cca3a065552c6f57c789fd5a2c2304cadd6262
MD5 68071c285ba3a149d5ba07e5cb5d37be
BLAKE2b-256 b7629841a164187ce354520d1a115ceb0b585bf09e656ac248a1c7d926662317

See more details on using hashes here.

File details

Details for the file pathnavigator-0.6.3-py2.py3-none-any.whl.

File metadata

  • Download URL: pathnavigator-0.6.3-py2.py3-none-any.whl
  • Upload date:
  • Size: 17.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.11

File hashes

Hashes for pathnavigator-0.6.3-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 f2a4e9867679ec45c25d3571eb9bce600e93aec94d2427ea2584f886bec8f710
MD5 17f1ebc1eaa775887c247970397633b6
BLAKE2b-256 4feccaf295ab83575d7515d17d8863a77c27b6be90d23a041f166352d49fc68a

See more details on using hashes here.

Supported by

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