File temp = null;
try {
temp = File.createTempFile(prefix, suffix, new File(directoryPath));
path = temp.getAbsolutePath();
} catch (IOException ex) {
throw new CanNotCreateTemporaryFileException(
"Cannot create temporary file in directory \"" + directoryPath + "\"");
}
return path;
}