Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 331 Bytes

is_link.markdown

File metadata and controls

22 lines (16 loc) · 331 Bytes

is_link

{{code:php $symlinked = is_link('/path/to/foobar'); var_export($symlinked);

//=> true

}}

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

#=> true

}}

{{related:
filesystem/is_dir
filesystem/is_file
filesystem/readlink }}