Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
app_dirs.php
Go to the documentation of this file.
1 <?php
10 $appDirs = ['app', 'pub/media', 'var/log'];
11 foreach ($appDirs as $dir) {
12  $appDir = TESTS_TEMP_DIR . '/Magento/Backup/data/' . $dir;
13  if (!is_dir($appDir)) {
14  mkdir($appDir, 0777, true);
15  }
16 }
$appDir
Definition: theme.php:12
$appDirs
Definition: app_dirs.php:10
mkdir($pathname, $mode=0777, $recursive=false, $context=null)
Definition: ioMock.php:25