我想使用snakebite检查hdfs目录中是否存在文件,如果不存在则创建。我正在关注touchz
此处的文档并像这样使用它:
def createFile(client):
if client.test("/user/test/sample.txt", exists=True):
print "file exists"
else:
print "file not exist, create file"
print client.touchz(["/user/test/sample.txt"])
client = Client(remote_host, 8020, use_trash=False)
createFile(client)
但是当我去检查时,我没有看到sample.txt in remote_host:/user/test/
But I see the file when I usedhadoop fs -touchz remote_host:/user/test/sample.txt
如何使用蛇咬的touchz
?