Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Filesystem
Io
IoInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Filesystem\Io
;
7
12
interface
IoInterface
13
{
20
public
function
open
(array $args = []);
21
27
public
function
close
();
28
37
public
function
mkdir
($dir,
$mode
= 0777, $recursive =
true
);
38
46
public
function
rmdir
($dir, $recursive =
false
);
47
53
public
function
pwd
();
54
62
public
function
cd
($dir);
63
71
public
function
read
($filename, $dest =
null
);
72
81
public
function
write
($filename, $src,
$mode
=
null
);
82
90
public
function
rm
($filename);
91
100
public
function
mv
($src, $dest);
101
109
public
function
chmod
($filename,
$mode
);
110
118
public
function
ls
($grep =
null
);
119
125
public
function
dirsep
();
126
}
Magento\Framework\Filesystem\Io\IoInterface\chmod
chmod($filename, $mode)
Magento\Framework\Filesystem\Io\IoInterface\ls
ls($grep=null)
Magento\Framework\Filesystem\Io
Definition:
AbstractIo.php:7
Magento\Framework\Filesystem\Io\IoInterface\open
open(array $args=[])
Magento\Framework\Filesystem\Io\IoInterface\dirsep
dirsep()
Magento\Framework\Filesystem\Io\IoInterface\write
write($filename, $src, $mode=null)
Magento\Framework\Filesystem\Io\IoInterface\pwd
pwd()
Magento\Framework\Filesystem\Io\IoInterface\rm
rm($filename)
Magento\Framework\Filesystem\Io\IoInterface\close
close()
$mode
if($exist=($block->getProductCollection() && $block->getProductCollection() ->getSize())) $mode
Definition:
grid.phtml:15
Magento\Framework\Filesystem\Io\IoInterface\rmdir
rmdir($dir, $recursive=false)
Magento\Framework\Filesystem\Io\IoInterface\mv
mv($src, $dest)
Magento\Framework\Filesystem\Io\IoInterface\read
read($filename, $dest=null)
Magento\Framework\Filesystem\Io\IoInterface\cd
cd($dir)
Magento\Framework\Filesystem\Io\IoInterface
Definition:
IoInterface.php:12
Magento\Framework\Filesystem\Io\IoInterface\mkdir
mkdir($dir, $mode=0777, $recursive=true)