hadoop判断文件是否存在
hadoop判断文件是否存在在shell中判断一个HDFS目录/文件是否存在直接看shell代码:hadoop fs -test -e /hdfs_dirif [ $? -ne 0 ]; thenecho "Directory not exists!"fihadoop fs -test -e 用于判断HDFS目录/文件是否存在,下一步检测该命令的返回值,以确定其判断结果。-test -[ezd] <path>: If file { exists, has zero length, is a directorythen return 0, else return 1.e,z,d参数必用其一,不可缺少。