Hallo!
Ich würde gerne wie in Shopware 5.5 das Filesystem verwenden, um zum einen privat als auch public Dateien- und Ordner zu verwalten.
Bei Shopware 5.5 konnte man den Service so holen:
/** @var \Shopware\Components\Filesystem\PrefixFilesystem $fileSystem */
$fileSystemPrivate = $this->container->get('foo_bar.filesystem.private');
Das geht leider nicht in Shopware 6.
You have requested a non-existent service "foo_bar.filesystem.private".
Gibt es Alternativen, wie man das erreichen kann?
Die Klasse gibt es ja jedenfalls … https://github.com/shopware/platform/blob/master/src/Core/Framework/Filesystem/PrefixFilesystem.php
Wenn ich den von Shopware in der install() verwenden möchte (als Beispiel), kracht es:
The "shopware.filesystem.private" service or alias has been removed or inlined when the container was compiled. You should either make it public, or stop using the container directly and use dependency injection instead.
Schöne Grüße,
Niklas