tf.io.matching_files

Aliases:

  • tf.io.matching_files
  • tf.matching_files
tf.io.matching_files(
    pattern,
    name=None
)

Defined in generated file: tensorflow/python/ops/gen_io_ops.py.

Returns the set of files matching one or more glob patterns.

Note that this routine only supports wildcard characters in the basename portion of the pattern, not in the directory portion. Note also that the order of filenames returned can be non-deterministic.

Args:

  • pattern: A Tensor of type string. Shell wildcard pattern(s). Scalar or vector of type string.
  • name: A name for the operation (optional).

Returns:

A Tensor of type string.