Home | History | Annotate | Download | only in Common

Lines Matching refs:os

2 # Override built in module os to provide support for long file path

14 import os
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))
61 environ = os.environ
62 getcwd = os.getcwd
63 chdir = os.chdir
64 walk = os.walk
65 W_OK = os.W_OK
66 F_OK = os.F_OK
67 sep = os.sep
68 linesep = os.linesep
69 getenv = os.getenv
70 pathsep = os.pathsep
71 name = os.name
72 SEEK_SET = os.SEEK_SET
73 SEEK_END = os.SEEK_END