check_file

  1. drupal
    1. 4.7
    2. 5
    3. 6 common.inc
Versions
4.7 – 6 check_file($filename)

Related topics

Code

includes/common.inc, line 708

<?php
function check_file($filename) {
  return is_uploaded_file($filename);
}
?>