Home | History | Annotate | Download | only in Common

Lines Matching refs:path

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

17 def isfile(path):
18 return os.path.isfile(LongFilePath(path))
20 def isdir(path):
21 return os.path.isdir(LongFilePath(path))
23 def exists(path):
24 return os.path.exists(LongFilePath(path))
27 return os.path.getsize(LongFilePath(filename))
30 return os.path.getmtime(LongFilePath(filename))
33 return os.path.getatime(LongFilePath(filename))
36 return os.path.getctime(LongFilePath(filename))
38 join = os.path.join
39 splitext = os.path.splitext
40 splitdrive = os.path.splitdrive
41 split = os.path.split
42 abspath = os.path.abspath
43 basename = os.path.basename
44 commonprefix = os.path.commonprefix
45 sep = os.path.sep
46 normpath = os.path.normpath
47 normcase = os.path.normcase
48 dirname = os.path.dirname
49 islink = os.path.islink
50 isabs = os.path.isabs
51 realpath = os.path.realpath
52 relpath = os.path.relpath
53 pardir = os.path.pardir