Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
io.php
Go to the documentation of this file.
1 <?php
7 
14 function is_dir($path)
15 {
16  return true;
17 }
18 
25 function is_writable($path)
26 {
27  return true;
28 }
29 
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 }
disk_free_space($path)
Definition: io.php:36
is_writable($path)
Definition: io.php:25