method: path.extpy.listobj

*Not documented*
    def listobj(self, fil=None, **kw):

origin: path.extpy

where:

function source:

def listobj(self, fil=None, **kw):
    l = []
    for x in self.listdir(fil, **kw):
        l.append(x.resolve())
    return l