I needed to google path formats, but according to
https://learn.microsoft.com/en-us/do...mats#unc-paths :
UNC paths
Universal naming convention (UNC) paths, which are used to access network resources, have the following format:
A server or host name, which is prefaced by \\. The server name can be a NetBIOS machine name or an IP/FQDN address (IPv4 as well as v6 are supported).
A share name, which is separated from the host name by \. Together, the server and share name make up the volume.
A directory name. The directory separator character separates subdirectories within the nested directory hierarchy.
An optional filename. The directory separator character separates the file path and the filename.
The following are some examples of UNC paths:
Path Description
\\system07\C$\ The root directory of the C: drive on system07.
\\Server2\Share\Test\Foo.txt The Foo.txt file in the Test directory of the \\Server2\Share volume.
UNC paths must always be fully qualified. They can include relative directory segments (. and ..), but these must be part of a fully qualified path. You can use relative paths only by mapping a UNC path to a drive letter.