1
Hello, there is some way I can move a File to the recycle bin instead of deleting it permanently?
File f = new File("um caminho com um arquivo top aki);
f.delete(); //retorna um true caso consiga deletar, e isso ocorre na hora.
f.deleteOnExit(); //procedimento void que deleta o arquivo no fechamento da aplicação.
Looks like you have a new API in Java 9: https://docs.oracle.com/javase/9/docs/api/java/awt/Desktop.html#moveToTrash-java.io.File-
– cezar
To do so would be java.awt.Desktop.moveToTrash(f) ?? because even with java 10 in my netbeans it is not working...
– Jonathan CR
I’m trying to lower the Nb 11 to see if it resolves... already return with the result..
– Jonathan CR