2

我试图在创建文件之前获取文件的短路径。如果文件夹或文件存在,我找到了一个可以将路径转换为短路径的示例。但是,有没有办法在文件存在之前获得短路径?

4

1 回答 1

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
于 2012-09-04T07:37:29.707 回答