Home | History | Annotate | Download | only in Common

Lines Matching refs:LongFilePath

16 from Common.LongFilePathSupport import LongFilePath

22 return os.access(LongFilePath(path), mode)
25 return os.remove(LongFilePath(path))
28 return os.removedirs(LongFilePath(name))
31 return os.rmdir(LongFilePath(path))
34 return os.mkdir(LongFilePath(path))
37 return os.makedirs(LongFilePath(name), mode)
40 return os.rename(LongFilePath(old), LongFilePath(new))
43 return os.chdir(LongFilePath(path))
46 return os.chmod(LongFilePath(path), mode)
49 return os.stat(LongFilePath(path))
52 return os.utime(LongFilePath(path), times)
56 uList = os.listdir(u"%s" % LongFilePath(path))