在Hadoop中,可以使用Hadoop命令行工具或Hadoop Java API來創建文件夾。以下是兩種方法:
hdfs dfs -mkdir /path/to/directory
例如,要在根目錄下創建一個名為test的文件夾,可以使用以下命令:
hdfs dfs -mkdir /test
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) {
Configuration conf = new Configuration();
FileSystem fs = null;
try {
fs = FileSystem.get(conf);
Path folderPath = new Path("/test");
if (!fs.exists(folderPath)) {
fs.mkdirs(folderPath);
System.out.println("Folder created successfully.");
} else {
System.out.println("Folder already exists.");
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
fs.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
這將創建一個名為test的文件夾。您可以根據需要更改文件夾的路徑。