Well, you need to create the folder if it doesn't exist.
try running this code and see if it fixes your issue:
File parentDestination = saveFile.getParentFile();
if (!parentDestination.exists()) {
parentDestination.mkdirs(); //make all the directory structures needed
}