localFile = "download200MBContent.txt";
localpath = "src/main/resources/";
remoteFileName = "upload200MBFile.txt";
File outputFile = new File(localpath + localFile);
FileOutputStream outStream = new FileOutputStream(outputFile);
service.downloadFile(300, remoteFileName, outStream); // regular download
outStream.close();
FileUtility.waitExists(localpath + localFile, 0);
FileUtility.deleteFile(localpath + localFile);
FileUtility.deleteFile(TestConstants.filServiceLocation2 + remoteFileName);
}