Mega Code Archive
Categories
/
Php
/
File Directory
Is_dir() function verifies that the file is a directory
bool is_dir (string filename) $isdir = is_dir("index.html"); // returns false $isdir = is_dir("book"); // returns true ?>