Returns a file reference for the specified store. @param name name of store @return file
(final String name)
| 297 | * @return file |
| 298 | */ |
| 299 | private IOFile storeFile(final String name) { |
| 300 | final TokenBuilder tb = new TokenBuilder().add(NAME); |
| 301 | if(!standardStore(name)) tb.add('-').add(name); |
| 302 | return context.soptions.dbPath(tb.add(IO.BASEXSUFFIX).toString()); |
| 303 | } |
| 304 | |
| 305 | /** |
| 306 | * Checks if the supplied store refers to the standard store. |