public static void main (String[] args) lance IOException {
BufferedReader br = new BufferedReader(new FileReader("output1.txt"));
List<String> newName = new ArrayList<String>();
List<String> oldName = new ArrayList<String>();
Ligne de ficelle ;
String[] col;
while((line=br.readLine())!=null) {
col = line.split("#");
newName.add(col[0]);
oldName.add(col[1]);
}
br.close();
for(int i=0;i<newName.size();i++) {
Fichier oldFile = new File("D://TDDOWNLOAD//heihei//"+oldName.get(i)+".mp4");
System.out.println(oldFile.exists());//Vérifier si le fichier existe
Fichier newFile = new File(oldFile.getParent()+File.separator+newName.get(i)+".mp4");
if(newFile.exists()) {
System.out.println(i+"existe déjà"); //Le nouveau fichier existe déjà
} autre {
System.out.println(i+"/t"+oldFile.renameTo(newFile));//Si l'ancien fichier a été renommé avec succès
}
}
}
}