MapReduce服务 MRS-创建目录:代码样例

时间:2023-11-01 16:19:45

代码样例

如下是写文件的代码片段,详细代码请参考com.huawei.bigdata.hdfs.examples中的HdfsExample类。

 /**  * 创建目录  *  * @throws java.io.IOException  */ private void mkdir() throws IOException {   Path destPath = new Path(DEST_PATH);   if (!createPath(destPath)) {       LOG.error("failed to create destPath " + DEST_PATH);   return;   }   LOG.info("success to create path " + DEST_PATH);}/** * create file path * * @param filePath * @return * @throws java.io.IOException */private boolean createPath(final Path filePath) throws IOException {    if (!fSystem.exists(filePath)) {        fSystem.mkdirs(filePath);    }    return true;}
support.huaweicloud.com/devg3-mrs/mrs_07_300013.html