如何使用 `FileStorage` 创建目录: 临时思路: ``` File file = new File("xxx"); if (null != file) { file.mkdirs(); } ``` 后续版本给出优化API;