I am trying to write a Python script that can move and copy files on a remote Linux server. However, I can\'t assume that everyone running the script (on Windows) will have mapp
Easy solution is to use forward slashes to specify the Universal Name Convention (UNC):
//HOST/share/path/to/file
Found this solution in another thread and felt it would be relevant here. See original thread below:
Using Python, how can I access a shared folder on windows network?