I am trying to retrieve a file off a Distributed File System (Microsoft)
\\int\GroupData\ITProSup\Operations Support\REMGROUP.txt
In order to have access to this DFS i need to input a user name and a password connecting to a DFS.
Now im trying to write a script in python to retrieve the file REMGROUP.txt from the DFS. I can't for the life of me find out a way of doing this that doesn't involve logging into the ftp server. Some modules I have found include
http://docs.pyfilesystem.org/en/latest/ftpfs.html#fs.ftpfs.FTPFS
https://docs.python.org/2/library/shutil.html
But neither of these refer to a way or have a method that takes a user name or password.
My question is does anyone know in python how to access a windows DFS that requires a user name and password to retrieve a file?