从控制器内部我需要获取bundle中一个目录的路径。所以我有:
class MyController extends Controller{
public function copyFileAction(){
$request = $this->getRequest();
$directoryPath = '???'; // /web/bundles/mybundle/myfiles
$request->files->get('file')->move($directoryPath);
// ...
}
}
如何正确$directoryPath
?
答案 0 :(得分:69)
有一种更好的方法:
$this->container->get('kernel')->locateResource('@AcmeDemoBundle')
将给出AcmeDemoBundle的绝对路径
$this->container->get('kernel')->locateResource('@AcmeDemoBundle/Resource')
将在AcmeDemoBundle中提供Resource dir的路径,依此类推......
如果这样的目录/文件不存在,将抛出InvalidArgumentException。
此外,在容器定义中,您可以使用:
my_service:
class: AppBundle\Services\Config
arguments: ["@=service('kernel').locateResource('@AppBundle/Resources/customers')"]
修改强>
您的服务不必依赖内核。您可以使用默认的symfony服务: file_locator 。它在内部使用 Kernel :: locateResource ,但在测试中更容易加倍/模拟。
服务定义
my_service:
class: AppBundle\Service
arguments: ['@file_locator']
类
namespace AppBundle;
use Symfony\Component\HttpKernel\Config\FileLocator;
class Service
{
private $fileLocator;
public function __construct(FileLocator $fileLocator)
{
$this->fileLocator = $fileLocator;
}
public function doSth()
{
$resourcePath = $this->fileLocator->locate('@AppBundle/Resources/some_resource');
}
}
答案 1 :(得分:3)
这样的事情:
$directoryPath = $this->container->getParameter('kernel.root_dir') . '/../web/bundles/mybundle/myfiles';