Skip to content

Instantly share code, notes, and snippets.

@angiejones
Last active January 28, 2019 20:07
Embed
What would you like to do?
Move file to test directory
File downloadedPDF = new File("/Users/angie/Downloads/" + invoiceNumber + ".pdf");
String destination = "resources/Invoice_PDFs/" + invoiceNumber + ".pdf";
FileUtils.moveFile(downloadedPDF, destination);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment