在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對象。