我正在尝试将本地路径转换为UNC路径,它没有我想象的那么直接。了解最佳方法很有用。
local_path = C:\Test\file.txt
并转到:
unc_path = \\10.10.10.10\c$\Test\file.txt
是否有一个可以通过1/2调用做到这一点的库?
否则,我正在使用pathlib.Path类,例如
local_path = Path(input_path)
// Split the Path object and convert tuple to a list
local_path_lst = list(local_path.parts)
// replace C:\ with c$
local_path_lst[0] = "c$"
then append to the front the \\{IP} and merge the elements of said list.
这不是正确的方法。有解决这个问题的最佳做法吗?
我本质上是想为local_path创建一个URI,以便本地网络中的其他计算机可以访问它。