我正在尝试在创建文件之前获取文件的短路径。我发现了一个示例,如果文件夹或文件存在,它可以将路径转换为shortPath。但是,有没有办法在文件存在之前获得短路径?
答案 0 :(得分:0)
感谢所有评论。我认为解决这个问题最简单的方法是:
if file DOES NOT existed:
generate shortPath
return shortPath
else:
touch a new file with exact name expected.
generate shortPath
remove temp file
return shortPath