标签: android
我想创建一个文件夹“newFolder”,如下所示:a/b/c/newFolder
newFolder
a/b/c/newFolder
这段代码有意义吗?
File path = new File("a/b/c/newFolder"); path.mkdirs(); path.createNewFile();
为什么我需要path.createNewFile()? 它是在“newFolder”文件夹下创建新文件还是与path.mkdir()执行相同操作? THX。
path.createNewFile()
path.mkdir()