“开发人员对 App Engine 上的文件系统具有只读访问权限”是否正确?

发布于 2024-08-05 01:04:47 字数 289 浏览 5 评论 0原文

根据这篇关于 Google App Engine 的维基百科文章

开发人员具有只读访问权限 App Engine 上的文件系统。

我听说过 App Engine 应用程序允许上传,而且 Google 还出售额外的存储空间 - 如果是这样,这个说法难道不会显得不正确吗?

According to this Wikipedia article on Google App Engine:

Developers have read-only access to
the filesystem on App Engine.

I have heard of App Engine apps that allow uploads and Google also sells additional storage - if so, wouldn't this statement appear to be incorrect?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

夏尔 2024-08-12 01:04:47

不会。

这些应用程序可能会将上传的数据直接存储到存储中,而不是文件系统中。

附加存储不一定位于文件系统中,而是位于存储本身中。

从这个 Google App Engine 页面:

App Engine 应用程序无法[...]写入文件系统。应用程序必须使用 App Engine 数据存储区来存储持久数据。允许从文件系统读取

No.

Those apps would likely store the uploaded data into the store directly rather than the filesystem.

The additional storage is not necessarily in the filesystem but in the storage itself.

From this Google App Engine page:

An App Engine application cannot [...] write to the filesystem. Applications must use the App Engine datastore for storing persistent data. Reading from the filesystem is allowed

梦萦几度 2024-08-12 01:04:47

您的应用程序无法写入文件系统。允许上传的应用程序将上传的文档/数据存储在数据库中。

Your app cannot write to the file system. Apps that allow uploads store the uploaded documents/data in the database.

娇纵 2024-08-12 01:04:47

查看 Blob 属性,例如本教程中用于存储图像的属性:

http://code .google.com/appengine/articles/images.html

还有一些库可将大文件分割成多个部分,以 Blob 的形式存储,然后将它们重新组合在一起。

Check out the Blob property, such as in this tutorial for storing images:

http://code.google.com/appengine/articles/images.html

There are also libraries for splitting a large file into pieces for storage as Blobs and put them back together again.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文