ASP.Net MVC 在资源中存储或作为内容存储

发布于 2024-11-06 16:42:35 字数 167 浏览 0 评论 0原文

我有大量图像(大约 20K),我不希望用户直接访问它们。因此,如果请求令牌有效,我有一个控制器可以将请求的图像流回。我现在想知道是否应该将图像存储在内部资源文件中或仅作为内容存储?我之前尝试过内容,但如果您知道文件夹和文件名,则可以从浏览器访问它们。这些文件在运行时不会更改。

预先感谢您对此的任何提示!

I have a very huge amount of images (about 20K) that I don't want to be directly accessible by a user. Therefore I have a controller that streams a requested images back if the requesttoken is valid. I wonder now if I should store the images within a internal Resourcefile or just as content? I tried content before but you are able to access them from the browser if you know the folder and filename. The files don't change at runtime.

Thanks in advance for any hint on this!

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

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

发布评论

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

评论(1

鹿! 2024-11-13 16:42:35

为此,您应该使用 App_Data 文件夹。该文件夹对外部隐藏,因此非常适合根据需要存储嵌入式数据库或文件。

您可能感兴趣:

什么是 App_Data Visual Studio 中使用的文件夹?

You should use the App_Data folder for this. This folder is hidden from the outside so it is ideal for storing embedded databases or files as you want.

You may be interested in:

What is the App_Data folder used for in Visual Studio?

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