Lines Matching refs:path
50 filename = os.path.normpath(filename)
55 # map the path name to the SVR4 class it belongs to and
90 yield act.attrs.get("path"), act
110 path = d + p.pathname
111 if (p.type == "d" and path not in self.pkg.datastream) or \
113 yield path, (self.pkgmap, None, path)
128 for path, data in self._walk_bundle():
137 def action(self, pkgmap, ci, path):
139 mapline = pkgmap[path]
142 return unknown.UnknownAction(path=path)
158 group=mapline.group, path=mapline.pathname,
163 path=mapline.pathname)
165 act = link.LinkAction(path=mapline.pathname,
168 act = hardlink.HardLinkAction(path=mapline.pathname,
191 act = unknown.UnknownAction(path=mapline.pathname)
198 if not os.path.isfile(filename):