query
On this page

maybeMissing

lib.fileset.maybeMissing

Docs pulled from | This Revision | 21 minutes ago


Create a file set from a path that may or may not exist:

  • If the path does exist, the path is coerced to a file set.
  • If the path does not exist, a file set containing no files is returned.

Inputs

path

1. Function argument

Type

maybeMissing :: Path -> FileSet

Examples

lib.fileset.maybeMissing usage example

# All files in the current directory, but excluding main.o if it exists
difference ./. (maybeMissing ./main.o)