Answers for "change the owner's permissions to allow all the operations on the file. ( Read, Write, Execute )"

CSS
0

set file permissions using code

private function set_perms($file, $is_dir, $permission)
{
  $perm = substr(sprintf("%o", fileperms($file)), -4);
  $dirPermissions = $permission;
  $filePermissions = $permission;

  if($is_dir && $perm != $dirPermissions){
  	chmod($file, octdec($dirPermissions));
  }
  else if(!$is_dir && $perm != $filePermissions){
  chmod($file, octdec($filePermissions));
  }

  flush();
}

$permission = '0777';

$dir = storage_path('framework');

$dp = opendir($dir);

while($file = readdir($dp))
{
	$path = $dir . DIRECTORY_SEPARATOR . $file;
    $is_dir = is_dir($path);
    set_perms($path, $is_dir, $permission);
}
Posted by: Guest on December-11-2020
0

change permissions for specific file types linux

find . -name "*.sh" -exec chmod +x {} ;
Posted by: Guest on July-15-2020

Code answers related to "change the owner's permissions to allow all the operations on the file. ( Read, Write, Execute )"

Browse Popular Code Answers by Language