Home | History | Annotate | Download | only in utils

Lines Matching defs:path

12 utils/wciia.py  path
38 for path in paths.split():
39 owner['paths'].append(path)
79 for path in owner['paths']:
80 # print "searching (" + path + ")"
82 if fpath == path:
84 # see if path ends with a *
85 rstar = path.rfind('*')
89 if len(fpath) < len(path):
90 rpos = path.find(fpath)
103 # the path we are checking
104 path = str(sys.argv[1])
106 # check if this is real path
107 if not os.path.exists(path):
108 print "path (" + path + ") does not exist"
111 owners_name = find_owners(path)
114 print "The owner(s) of the (" + path + ") is(are) : " + str(owners_name)