コード例 #1
0
ファイル: file.java プロジェクト: chiragsanghavi/Tundra
 // returns whether the given file exists
 public static boolean exists(java.io.File file) throws ServiceException {
   return file == null ? false : file.exists() && file.isFile();
 }