Current File : /home/n742ef5/royalanteam.com/mls_bkp/test_cmd.php
<?php
  
// Use ls command to shell_exec
// function
// $output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/');
  
// Display the list of all file
// and directory
// echo "<pre>$output</pre>";
$output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/2017');
  
// Display the list of all file
// and directory
echo "<pre>$output</pre>";

$output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/2018');
  
// Display the list of all file
// and directory
echo "<pre>$output</pre>";

$output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/2020');
  
// Display the list of all file
// and directory
echo "<pre>$output</pre>";

$output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/2021');
  
// Display the list of all file
// and directory
echo "<pre>$output</pre>";

$output = shell_exec('du -hs /home3/sitwoweb/public_html/royalanteam/wp-content/uploads/2022');
  
// Display the list of all file
// and directory
echo "<pre>$output</pre>";

$dir="/home3/sitwoweb/public_html/royalanteam/wp-content/uploads/";
if (is_readable($dir)){
    
    echo "yes";
}else{
    echo "no";
}

?>