PHP中检测某个文件是否存在的函数为()。
A: class_exists
B: file_exists
C: is_dir
D: get_class
A: class_exists
B: file_exists
C: is_dir
D: get_class
举一反三
- PHP中用于判断文件是否存在的函数? A: file_exists() B: filetime() C: file() D: filetype()
- File类中判断文件是否存在的方法是 ( )。 A: exists( ) B: getName() C: isFile() D: delete( )
- 下面选项中,用于在删除存储过程时,检测存储过程是否存在的关键字是()。 A: IF EXISTS B: HAS EXISTS C: AS EXISTS D: IS EXISTS
- File类型中定义了( )方法来判断一个文件是否存在。 A: exists B: createNewFile C: renameTo D: delete
- Java中要判断D盘下是否存在ab.txt文件,应该使用()。 A: if(new File(“d:ab.txt”).exists()==1) B: if(File.exists(“d:ab.txt”)==1) C: if(new File(“d:/ab.txt”).exists()) D: if(File.exists(“d:/ab.txt”))