Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在用cowboy构建一个服务器,并且我有一些我想要服务的静态 HTML 页面。是否有一个 OTP 友好的地方可以放置这种东西?有没有一种既定的方法来告诉钢筋在哪里寻找这种东西?
如果页面是应用程序的一部分,则通常在 priv 目录下,例如 priv/docroot 或类似目录。我不知道钢筋,但一般来说,filename:join(code:priv_dir(?APPNAME), "docroot")可用于在运行时计算完整目录名称。
filename:join(code:priv_dir(?APPNAME), "docroot")