首頁 >資料庫 >mysql教程 >hadoop判断文件是否存在

hadoop判断文件是否存在

WBOY
WBOY原創
2016-06-07 14:58:551587瀏覽

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