Skip to main content

Definitive Python wrapper for Windows System Path

Project description

winsyspath

Definitive Python wrapper for Windows System Path

Compatibility

  • Python 2.7.x
  • Python 3.x and newer

Example

import winsyspath

# Directory to add in the System Path
path = 'C:\\'

# Init System Path wrapper and read its actual value
syspath_wrapper = winsyspath.WinSysPath()

# Try to add a path into System path
try:
    if syspath_wrapper.add(path):
        print("The path "{}" is correctly added to the System Path".format(path))
    else:
        print("The path "{}" is already in System Path, so cannot be added".format(path))
except (EnvironmentError, WindowsError, OSError, ValueError) as ex:
    print("Error -> {}".format(str(ex)))

# Reload System path value (needed only if it is modified outside python)
syspath_wrapper.reload()

# Print System Path value as a list
print(syspath_wrapper.get())

# Print System Path value as a string
print(syspath_wrapper.get_str())

# Try to remove a path from System path
try:
    if syspath_wrapper.remove(path):
        print("The path "{}" is correctly removed from System Path".format(path))
    else:
        print("The path "{}" is not in System Path, so cannot be removed".format(path))
except (EnvironmentError, WindowsError, OSError, ValueError) as ex:
    print("Error -> {}".format(str(ex)))

Sources

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

winsyspath-0.1.0-py2.py3-none-any.whl (6.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file winsyspath-0.1.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for winsyspath-0.1.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 22703c00fecac7b60f29493ea3f386588cb32ab15409c48df49040f680fbfdf4
MD5 333e5e3b4c58aa59b2dbad5a7182ad95
BLAKE2b-256 4aa288d0209968e0d1d14f479120b85bb4639ba9069602963c926c381d4160c9

See more details on using hashes here.

Supported by

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