在Hadoop中,可以使用Hadoop Shell命令或者Hadoop API来新建文件夹。
hadoop fs -mkdir /path/to/newfolder
其中,/path/to/newfolder
是要新建的文件夹的路径。
import org.apache.hadoop.conf.Configuration;
import org.apache.hadoop.fs.FileSystem;
import org.apache.hadoop.fs.Path;
public class CreateFolder {
public static void main(String[] args) throws Exception {
Configuration conf = new Configuration();
FileSystem fs = FileSystem.get(conf);
Path folderPath = new Path("/path/to/newfolder");
fs.mkdirs(folderPath);
fs.close();
}
}
在上面的代码中,首先创建了一个Configuration对象和一个FileSystem对象,然后通过调用FileSystem的mkdirs方法来新建文件夹。最后记得关闭FileSystem对象。