You are here

function check_file in Drupal 4

Same name and namespace in other branches
  1. 5 includes/common.inc \check_file()
  2. 6 includes/common.inc \check_file()

Related topics

File

includes/common.inc, line 707
Common functions that many Drupal modules will need to reference.

Code

function check_file($filename) {
  return is_uploaded_file($filename);
}