作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试在 shopware 6 中获取公共(public)文件夹路径,以便使用文件系统在内部创建一个目录。有没有人对此有想法?
最佳答案
你可以看看服务shopware.filesystem.public
定义在vendor/shopware/core/Framework/DependencyInjection/filesystem.xml
作为
<service class="League\Flysystem\FilesystemInterface" id="shopware.filesystem.public" public="true">
<factory service="Shopware\Core\Framework\Adapter\Filesystem\FilesystemFactory" method="factory"/>
<argument>%shopware.filesystem.public%</argument>
</service>
当你注入(inject)这个服务时,你可以调用
$publicFileSystem->createDir('folder')
创建您的文件夹。
Flysystem
类代替。
$publicFileSystem->getMetaData('.')['path']
这是未经我测试的,正如之前所写,您可能只是不需要路径。还要记住,底层文件系统甚至可能不是本地存储。
关于shopware - 如何在 Shopware 6 中获取公用文件夹绝对路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68819896/
我是一名优秀的程序员,十分优秀!