I've been here and here but I'm still unable to connect to shared drive.
The disk is in the form of company (\\server.name.company) (V:)
. This works:
open("V:\path\to\file.txt")
and this doesn't
open("\\server.name.company\path\to\file.txt")
I'm losing my mind because I believe I did the exact same thing as in linked answers, so I've also tried
open("//server.name.company/path/to/file.txt")
I've checked for server name typos, but that doesn't seem to be the case. What else could be the problem here?