As of April 12th, you must go to Progress SupportLink to create new support cases or to access existing cases. Please, bookmark the SupportLink URL and use the new portal to contact the support team.
If you use the query to match a filename it should do it for ya-- although you might need a very specific query because this method will only download the first result returned.
Веталь Маркус
this.file = new File(folder, idImage);
this.fileMetaData = new FileMetaData(idImage);
this.fileOutputStream = new FileOutputStream(file);
client.file().download(fileMetaData, fileOutputStream, new DownloaderProgressListener()
{
@Override
public void onSuccess(Void arg0)
{ //Set File to ImageView }
@Override
public void onFailure(Throwable t)
{ //FAIL }
@Override
public void progressChanged(MediaHttpDownloader arg0) throws IOException { }
});
How download images from Kinvey Server by File_Name?