回答:
私の経験のように非常に重要な質問です。マーケットプレイスの拡張機能を送信すると、検証により、このようなメソッドの直接使用に関するエラーが生成されました。私は調査し、次の解決策を見つけました。
これ\Magento\Framework\Filesystem\Driver\File $file
をコンストラクタに注入します
(クラスレベル変数、つまりprotected $_file;
)を宣言してください。
そして、あなたは以下を含むメソッドにアクセスすることができます:isExists
そしてdeleteFile
例:コンストラクター
public function __construct(\Magento\Backend\App\Action\Context $context,
\Magento\Framework\Filesystem\Driver\File $file){
$this->_file = $file;
parent::__construct($context);
}
そして、あなたがファイルを削除しようとしているメソッドで:
$mediaDirectory = $this->_objectManager->get('Magento\Framework\Filesystem')->getDirectoryRead(\Magento\Framework\App\Filesystem\DirectoryList::MEDIA);
$mediaRootDir = $mediaDirectory->getAbsolutePath();
if ($this->_file->isExists($mediaRootDir . $fileName)) {
$this->_file->deleteFile($mediaRootDir . $fileName);
}
お役に立てれば。
RTの答えは適切ですが、この例ではObjectManagerを直接使用しないでください。
「理由はここにある:直接のObjectManagerを使用するように使用するか、しないようにMagentoの2は、」。
より良い例は以下の通りです:
<?php
namespace YourNamespace;
use Magento\Backend\App\Action;
use Magento\Backend\App\Action\Context;
use Magento\Framework\Filesystem\Driver\File;
use Magento\Framework\Filesystem;
use Magento\Framework\App\Filesystem\DirectoryList;
class Delete extends Action
{
protected $_filesystem;
protected $_file;
public function __construct(
Context $context,
Filesystem $_filesystem,
File $file
)
{
parent::__construct($context);
$this->_filesystem = $_filesystem;
$this->_file = $file;
}
public function execute()
{
$fileName = "imageName";// replace this with some codes to get the $fileName
$mediaRootDir = $this->_filesystem->getDirectoryRead(DirectoryList::MEDIA)->getAbsolutePath();
if ($this->_file->isExists($mediaRootDir . $fileName)) {
$this->_file->deleteFile($mediaRootDir . $fileName);
}
// other logic codes
}
}