lychee/php/helpers/hasPermissions.php

13 lines
248 B
PHP
Raw Normal View History

<?php
function hasPermissions($path) {
// Check if the given path is readable and writable
// Both functions are also verifying that the path exists
if (is_readable($path)===true&&is_writeable($path)===true) return true;
return false;
}
?>