我们的Web应用程序部署到Elastic Beanstalk实例,并且从代码中,我想创建一个text / csv文件。
我是否需要获得创建文件的权限?或者是否默认启用?
我应该如何授予创建新文件的权限?
答案 0 :(得分:3)
默认启用。
在我的Java应用程序(在EBS Tomcat上运行)中,我使用此系统属性来标识要写入的临时目录:
// Get a temporary folder to write the attachment file in
final String dirPath = System.getProperty("java.io.tmpdir");
如果我没记错的话,这只会给我路径/tmp