应用程序可以在AWS Elastic Beanstalk中创建文件吗?

时间:2018-02-15 06:03:51

标签: amazon-web-services elastic-beanstalk

我们的Web应用程序部署到Elastic Beanstalk实例,并且从代码中,我想创建一个text / csv文件。

我是否需要获得创建文件的权限?或者是否默认启用?

我应该如何授予创建新文件的权限?

1 个答案:

答案 0 :(得分:3)

默认启用。

在我的Java应用程序(在EBS Tomcat上运行)中,我使用此系统属性来标识要写入的临时目录:

// Get a temporary folder to write the attachment file in
final String dirPath = System.getProperty("java.io.tmpdir");

如果我没记错的话,这只会给我路径/tmp