Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 311 Bytes

File metadata and controls

21 lines (15 loc) · 311 Bytes

is_executable

{{code:php $executable = is_executable('/path/to/foobar'); var_export($executable);

//=> true

}}

{{code:ruby executable = File.executable?('/path/to/foobar') p executable

#=> true

}}

{{related:
filesystem/is_file
filesystem/is_link }}