Skip to main content

Windows and Linux compatible chmod

Project description

oschmod

Python chmod that works on Windows and Linux

Mergify

With oschmod, on Windows and Linux, you can use stat modes (permissions) for files and directories. Python's os.chmod() does not work properly on Windows, only setting the read-only bit.

For example, on Linux, you can easily give a file owner read, write, and execute permissions, and deny the group and others any permissions (i.e., equivalent of 700). You can do it like:

import os
import stat
os.chmod('myfile', stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)

Running the same command on Windows does not achieve the same results, such as the group and others are not denied permissions.

However, using oschmod you can use the same command on Windows or Linux and get the same results:

import oschmod
oschmod.set_mode('myfile', stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)

Installation

$ pip install oschmod

Changelog

0.1.0

Commit Delta: Change from 0.0.0 release

Released: 2020.04.15

Summary:

  • Initial release

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

oschmod-0.1.2.tar.gz (22.0 kB view hashes)

Uploaded Source

Built Distribution

oschmod-0.1.2-py2.py3-none-any.whl (18.0 kB view hashes)

Uploaded Python 2 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