判断文件夹是否存在?
我将如何确定文件或目录是否已在 Java 中创建?
我基本上想创建一个数据目录(如果尚不存在)。
谢谢。
How would I go about determining whether a file or directory has been created in Java?
I basically want to create a data directory if one is not already present.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以调用
File#exists()
来确定它是否存在,但您也可以只调用File#mkdirs()
自动创建整个路径(如果不存在)。You can call
File#exists()
to determine if it exists, but you can also just callFile#mkdirs()
to automatically create the whole path if not exist.我通常使用这种技术:
I usually use this technique: