Skip to content
This repository has been archived by the owner on Jun 20, 2020. It is now read-only.

CovenantEyes/py_win_unc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

win_unc

Python library for handling UNC mounting on Windows. - TravisBadge_

Installation

To install:

$ pip install win_unc

Documentation

Full documentation is available at covenanteyes.github.com/py_win_unc.

Basic Examples

Below is a simple example:

from win_unc import UncDirectoryMount, UncDirectory, DiskDrive

conn = UncDirectoryMount(UncDirectory(r'\\home\shared'), DiskDrive('Z:'))
conn.mount()
print 'Drive connected:', conn.is_mounted()
conn.unmount()

You can also provide credentials like this:

from win_unc import UncCredentials

unc = UncDirectory(r'\\home\shared', UncCredentials('user', 'pwd'))
conn = UncDirectoryMount(unc, DiskDrive('Z:'))

Or just connect the path without mounting it:

from win_unc import UncDirectoryConnection

conn = UncDirectoryConnection(r'\\home\shared')
conn.connect()

Unit Testing

To run the unit tests, do the following:

$ python test/run_tests.py

For all the tests to run, you must perform them on a Windows machine:

> python test\run_tests.py

License

This package is released under the MIT License. (See LICENSE.txt.)

About

Python library for handling UNC connections on Windows

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages