tf.io.gfile.exists

tf.io.gfile.exists(path)

Defined in tensorflow/python/lib/io/file_io.py.

Determines whether a path exists or not.

Args:

  • path: string, a path

Returns:

True if the path exists, whether its a file or a directory. False if the path does not exist and there are no filesystem errors.

Raises:

  • errors.OpError: Propagates any errors reported by the FileSystem API.