>데이터 베이스 >MySQL 튜토리얼 >hadoop判断文件是否存在

hadoop判断文件是否存在

WBOY
WBOY원래의
2016-06-07 14:58:551585검색

hadoop判断文件是否存在 在shell中判断一个HDFS目录/文件是否存在 直接看shell代码: hadoop fs -test -e /hdfs_dir if [ $? -ne 0 ]; then echo Directory not exists! fi hadoop fs -test -e 用于判断HDFS目录/文件是否存在,下一步检测该命令的返回值,以

hadoop判断文件是否存在

 

在shell中判断一个HDFS目录/文件是否存在

 

直接看shell代码:

 

hadoop fs -test -e /hdfs_dir

if [ $? -ne 0 ]; then

    echo "Directory not exists!"

fi

hadoop fs -test -e 用于判断HDFS目录/文件是否存在,下一步检测该命令的返回值,以确定其判断结果。

 

-test -[ezd] : If file { exists, has zero length, is a directory

then return 0, else return 1.

 

e,z,d参数必用其一,不可缺少。

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.