Skip to main content

A simple, cross-platform, lightweight utility to check permission of files and folders in Python.

Project description

Permission Check

A simple, cross-platform, lightweight utility to check permission of files and folders in Python.

Usage

  1. pip install permission-check
  2. from permission_check.permission_check import PermissionCheck
  3. file = PermissionCheck(path="path_to_your_file") (A FileNotFoundError will occur if the path is not an existing file or folder on the file system)

For checking Owner Permissions

Read

if file.owner.has_read(): print("Owner has read permissions"")

Write

if file.owner.has_write(): print("Owner has write permissions"")

Execute

if file.owner.has_execute(): print("Owner has execute permissions"")

For checking Group and Others user's Permissions

For checking Group and Other user's permissions just to file.group and file.others respectively. followed by the .has_all() or .has_read() or .has_write() or .has_execute() methods

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

permission_check-0.0.2.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

permission_check-0.0.2-py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 3

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