Does java has a file management API which i can use to create directory, and copy files from several locations inside it. I can manually copy a file using streams but what i am looking forward to is an api like :
copyFile(sourceFilePath,destinationDirectory) which will copy the file in sourceFilePath to destinationDirectory.
mkdir(destinationDirectory)