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
Backup
Test
Unit
_files
io.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Backup
;
7
14
function
is_dir
(
$path
)
15
{
16
return
true
;
17
}
18
25
function
is_writable
(
$path
)
26
{
27
return
true
;
28
}
29
36
function
disk_free_space
(
$path
)
37
{
38
return
2;
39
}
40
47
function
is_file
(
$path
)
48
{
49
return
2;
50
}
51
58
function
filesize
(
$path
)
59
{
60
return
1;
61
}
62
69
function
unlink
(
$path
)
70
{
71
return
true
;
72
}
73
80
function
rmdir
(
$path
)
81
{
82
return
true
;
83
}
Magento\Framework\Backup\filesize
filesize($path)
Definition:
io.php:58
Magento\Framework\Backup\is_file
is_file($path)
Definition:
io.php:47
Magento\Framework\Backup
Definition:
AbstractBackup.php:6
Magento\Framework\Backup\disk_free_space
disk_free_space($path)
Definition:
io.php:36
Magento\Framework\Backup\is_writable
is_writable($path)
Definition:
io.php:25
Magento\Framework\Backup\unlink
unlink($path)
Definition:
io.php:69
Magento\Framework\Backup\rmdir
rmdir($path)
Definition:
io.php:80
Magento\Framework\Backup\is_dir
is_dir($path)
Definition:
io.php:14
$path
$path
Definition:
import_with_filesystem_images.php:14