Module pl.dir

Useful functions for getting directory contents and matching them against wildcards.

Functions

fnmatch (file, pattern) does the filename match the shell pattern?.
filter (files, pattern) return a list of all files in a list of files which match the pattern.
getfiles (dir, mask) return a list of all files in a directory which match the a shell pattern.
getdirectories (dir) return a list of all subdirectories of the directory.
copyfile (src, dest, flag) copy a file.
movefile (src, dest) move a file.
walk (root, bottom_up, follow_links) return an iterator which walks through a directory tree starting at root.
rmtree (fullpath) remove a whole directory tree.
makepath (p) create a directory path.
clonetree (path1, path2, file_fun, verbose) clone a directory tree.
dirtree (d) return an iterator over all entries in a directory tree
getallfiles (start_path, pattern) Recursively returns all the file starting at path.


Functions

fnmatch (file, pattern)
does the filename match the shell pattern?. (cf. fnmatch.fnmatch in Python, 11.8)

Parameters:

  • file: A file name
  • pattern: A shell pattern
filter (files, pattern)
return a list of all files in a list of files which match the pattern. (cf. fnmatch.filter in Python, 11.8)

Parameters:

  • files: A table containing file names
  • pattern: A shell pattern.
getfiles (dir, mask)
return a list of all files in a directory which match the a shell pattern.

Parameters:

  • dir: A directory. If not given, all files in current directory are returned.
  • mask: A shell pattern. If not given, all files are returned.
getdirectories (dir)
return a list of all subdirectories of the directory.

Parameters:

  • dir: A directory
copyfile (src, dest, flag)
copy a file.

Parameters:

  • src: source file
  • dest: destination file or directory
  • flag: true if you want to force the copy (default)

Returns:

    true if operation succeeded
movefile (src, dest)
move a file.

Parameters:

  • src: source file
  • dest: destination file or directory

Returns:

    true if operation succeeded
walk (root, bottom_up, follow_links)
return an iterator which walks through a directory tree starting at root. The iterator returns (root,dirs,files) Note that dirs and files are lists of names (i.e. you must say path.join(root,d) to get the actual full path) If bottom_up is false (or not present), then the entries at the current level are returned before we go deeper. This means that you can modify the returned list of directories before continuing. This is a clone of os.walk from the Python libraries.

Parameters:

  • root: A starting directory
  • bottom_up: False if we start listing entries immediately.
  • follow_links: follow symbolic links
rmtree (fullpath)
remove a whole directory tree.

Parameters:

  • fullpath: A directory path
makepath (p)
create a directory path. This will create subdirectories as necessary!

Parameters:

  • p: A directory path
clonetree (path1, path2, file_fun, verbose)
clone a directory tree. Will always try to create a new directory structure if necessary.

Parameters:

  • path1: the base path of the source tree
  • path2: the new base path for the destination
  • file_fun: an optional function to apply on all files
  • verbose: an optional boolean to control the verbosity of the output. It can also be a logging function that behaves like print()

Usage:

    clonetree('.','../backup',copyfile)

Returns:

    if failed, false plus an error message. If completed the traverse, true, a list of failed directory creations and a list of failed file operations.
dirtree (d)
return an iterator over all entries in a directory tree

Parameters:

  • d: a directory

Returns:

    an iterator giving pathname and mode (true for dir, false otherwise)
getallfiles (start_path, pattern)
Recursively returns all the file starting at path. It can optionally take a shell pattern and only returns files that match pattern. If a pattern is given it will do a case insensitive search.

Parameters:

  • start_path: {string} A directory. If not given, all files in current directory are returned.
  • pattern: {string} A shell pattern. If not given, all files are returned.

Returns:

    Table containing all the files found recursively starting at path and filtered by pattern.