确定路径是否存在。
用法
tf.io.gfile.exists(
path
)
参数
-
path
字符串,路径
返回
- 如果路径存在,则为真,无论是文件还是目录。如果路径不存在并且没有文件系统错误,则为 False。
抛出
-
errors.OpError
传播 FileSystem API 报告的任何错误。
with open("/tmp/x", "w") as f:
f.write("asdf")
4
tf.io.gfile.exists("/tmp/x")
True
您还可以指定用于选择不同文件系统的 URI 方案:
# for a GCS filesystem path:
# tf.io.gfile.exists("gs://bucket/file")
# for a local filesystem:
with open("/tmp/x", "w") as f:
f.write("asdf")
4
tf.io.gfile.exists("file:///tmp/x")
True
这当前为现有目录返回 True
但不依赖此行为,尤其是在您使用云文件系统(例如 GCS、S3、Hadoop)时:
tf.io.gfile.exists("/tmp")
True
相关用法
- Python tf.io.gfile.GFile.close用法及代码示例
- Python tf.io.gfile.join用法及代码示例
- Python tf.io.gfile.GFile用法及代码示例
- Python tf.io.gfile.copy用法及代码示例
- Python tf.io.gfile.glob用法及代码示例
- Python tf.io.parse_example用法及代码示例
- Python tf.io.serialize_tensor用法及代码示例
- Python tf.io.SparseFeature用法及代码示例
- Python tf.io.decode_json_example用法及代码示例
- Python tf.io.TFRecordWriter用法及代码示例
- Python tf.io.decode_gif用法及代码示例
- Python tf.io.decode_raw用法及代码示例
- Python tf.io.RaggedFeature用法及代码示例
- Python tf.io.read_file用法及代码示例
- Python tf.io.deserialize_many_sparse用法及代码示例
- Python tf.io.write_graph用法及代码示例
- Python tf.io.TFRecordOptions.get_compression_type_string用法及代码示例
- Python tf.io.decode_proto用法及代码示例
- Python tf.image.random_brightness用法及代码示例
- Python tf.image.pad_to_bounding_box用法及代码示例
注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.io.gfile.exists。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。