String caminho = file.getAbsolutePath().trim().replace('\\', '/');
if (listaNegra.contains(caminho)) {
System.out.println("Não importado, pois está na lista temporária de regeição: " + caminho);
return null;
}
MP3File mp3;
try {
mp3 = new MP3File(caminho);
MusicaS musica = getMusica(mp3, file);
if (organizarPastas) {
File destinoF = new File(destino);
destinoF.mkdirs();
destinoF = new File(destinoF.getAbsolutePath() + "/" + file.getName());
if (!destinoF.getAbsolutePath().equals(file.getAbsolutePath())) {
if (file.renameTo(destinoF)) {
file = destinoF;
}
caminho = file.getAbsolutePath().replace('\\', '/');
mp3 = new MP3File(caminho);
musica = getMusica(mp3, file);
}
}
if (musica != null) {