java.io.File.isFile() Vérifie si le fichier représenté par ce chemin abstrait est un fichier normal.
Indique que le fichier de ce nom de chemin abstrait est un fichier, cette méthode renvoie vrai, sinon ceci La méthode renvoie false.
Exception .lang.String) refuse l'accès en lecture au fichier
Exemple
L'exemple suivant montre l'utilisation de la méthode java.io.File.isFile(). package com.test;
import java.io.File;
public class FileDemo {
public static void main(String[] args) {
File f = null;
String path;
boolean bool = false;
try{
// create new file
f = new File("c:");
// true if the file path is a file, else false
bool = f.isFile();
// get the path
path = f.getPath();
// prints
System.out.println(path+" is file? "+ bool);
// create new file
f = new File("c:/test.txt");
// true if the file path is a file, else false
bool = f.isFile();
// get the path
path = f.getPath();
// prints
System.out.print(path+" is file? "+bool);
}catch(Exception e){
// if any error occurs
e.printStackTrace();
}
}
}
c: is file? false c:est.txt is file? true
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!