Added methods to check if a file has a thumbnail.

Change-Id: I362ff20d8768be1dffbf857e442fbc30822079a7
This commit is contained in:
Iain Billett
2012-07-25 17:43:54 +01:00
committed by Michael Meeks
parent d5fdc95225
commit cbddf975d3

View File

@@ -194,6 +194,24 @@ public class FileUtilities {
}
return;
}
static boolean hasThumbnail(File file)
{
String filename = file.getName();
if( lookupExtension( filename ) == DOC ) // only do this for docs for now
{
// Will need another method to check if Thumb is up-to-date - or extend this one?
if( new File( file.getParent() , getThumbnailName( file ) ).isFile() )
return true;
return false; // If it's a document with no thumb
}
return true;
}
static String getThumbnailName( File file )
{
return "." + file.getName().split("[.]")[0] + ".png" ;
}
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */