Creates a database file. @param path database path @param name filename @return database filename
(final IOFile path, final String name)
| 230 | * @return database filename |
| 231 | */ |
| 232 | public static IOFile file(final IOFile path, final String name) { |
| 233 | return new IOFile(path, name + IO.BASEXSUFFIX); |
| 234 | } |
| 235 | |
| 236 | // PUBLIC METHODS =============================================================================== |
| 237 |