Skip to content

merchantprotocol/CAUtils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CAUtils

A utility library for CA.

Installation

pip install .

Usage

from CAUtils import fs

# List files in current directory
fs.ls()

# Create a directory
fs.mkdir('test')

# Copy files or directories
fs.cp('test', 'test_copy')

# Move files or directories
fs.mv('test_copy', 'test_moved')

# Remove files or directories
fs.rm('test_moved', recursive=True)

# Print the current directory
print(fs.pwd())

# Change to a new directory
fs.cd('/path/to/new/directory')

# Print the current directory again to see the change
print(fs.pwd())

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published