Difference between revisions of "$isdir"
From Scriptwiki
m (page spacing) |
m (separate page) |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
Returns informations on whether or not a directory exists. | Returns informations on whether or not a directory exists. | ||
− | $isdir( | + | $isdir($mircdir $+ mirc.ini) // returns $false (is a file) |
− | + | $isdir($mircdir) // returns $true (is a directory) | |
− | |||
== Examples == | == Examples == | ||
− | alias | + | alias dir_exists { |
− | + | if ($isdir($1)) { return directory exists! } | |
+ | else { return directory doesn't exist } | ||
} | } | ||
− | + | == See Also == | |
− | + | * [[$isfile]] Check if a file exists.<br /> | |
− | == See | + | * [[$exists]] Check if a file OR directory exists.<br /> |
− | |||
− | [[$isfile]] | ||
− | |||
[[Category:File and Directory Identifiers]] | [[Category:File and Directory Identifiers]] |
Latest revision as of 09:49, 18 May 2007
Returns informations on whether or not a directory exists.
$isdir($mircdir $+ mirc.ini) // returns $false (is a file) $isdir($mircdir) // returns $true (is a directory)
Examples
alias dir_exists { if ($isdir($1)) { return directory exists! } else { return directory doesn't exist } }