Fredrik Lundh <fredrik at pythonware.com> wrote: > Alex Martelli wrote: >> So wrap it up...: >> >> def joined_listdir(dir): >> return [os.path.join(dir,f) for f in os.listdir(dir)] > or: glob.glob(os.path.join(dir, "*")) this won't show `hidden' files on unix/linux. -- groetjes, carel