//
import java.io.*;
public abstract class Fichier extends File{
public Fichier(String s) throws NullPointerException {
super(s);}
protected String repertoireDe() {
String NomComplet=this.getAbsolutePath();
return NomComplet.substring(0,NomComplet.lastIndexOf(File.separator));
}
}