如何从 Drupal 7 中模块的 hook_install 创建目录?

发布于 2024-10-11 07:01:06 字数 178 浏览 5 评论 0原文

实际上,我知道如何创建目录= mkdir。
但是,我需要向其传递服务器中的完整绝对路径,并且我不知道如何在 hook_install 中获取相关路径。
我尝试使用 base_path(),但它返回“/”。

我想要的路径是sites/default/files(我在“文件”内创建目录)。

谢谢。

Actually, I know how to create a directory = mkdir.
However, I need to pass it a full absolute path in the server, and I don't know how to get the relevant path in hook_install.
I tried using base_path(), but it returned '/'.

The path I want is sites/default/files (inside "files" I create the directory).

Thanks.

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

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

发布评论

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

评论(2

碍人泪离人颜 2024-10-18 07:01:06

请使用正确的 API。

$directory = file_default_scheme() . '://yourdir';
file_prepare_directory($directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);

Please use the proper APIs.

$directory = file_default_scheme() . '://yourdir';
file_prepare_directory($directory, FILE_CREATE_DIRECTORY | FILE_MODIFY_PERMISSIONS);
原野 2024-10-18 07:01:06

您是否尝试过mkdir('sites/default/files/yourdir')?如果是这样,那么在哪里创建目录?如果没有,为什么不呢?

相对目录名称是根据工作目录解析的。 Drupal 中的工作目录通常是 install.phpindex.php 所在的目录。

Did you try mkdir('sites/default/files/yourdir')? If so, where does that create the directory? If not, why not?

Relative directory names are resolved based on the working directory. The working directory in Drupal is usually the directory in which your install.php and index.php is located.

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