< prev index next >

src/java.base/share/classes/java/nio/file/FileSystem.java

Print this page

        

*** 313,323 **** * <p> When the syntax is "{@code glob}" then the {@code String} * representation of the path is matched using a limited pattern language * that resembles regular expressions but with a simpler syntax. For example: * * <blockquote> ! * <table border="0" summary="Pattern Language"> * <tr> * <td>{@code *.java}</td> * <td>Matches a path that represents a file name ending in {@code .java}</td> * </tr> * <tr> --- 313,325 ---- * <p> When the syntax is "{@code glob}" then the {@code String} * representation of the path is matched using a limited pattern language * that resembles regular expressions but with a simpler syntax. For example: * * <blockquote> ! * <table class="borderless"> ! * <caption style="display:none">Pattern Language</caption> ! * <tbody> * <tr> * <td>{@code *.java}</td> * <td>Matches a path that represents a file name ending in {@code .java}</td> * </tr> * <tr>
*** 346,356 **** * <td><code>C:\\*</code> * <td>Matches <code>C:\foo</code> and <code>C:\bar</code> on the Windows * platform (note that the backslash is escaped; as a string literal in the * Java Language the pattern would be <code>"C:\\\\*"</code>) </td> * </tr> ! * * </table> * </blockquote> * * <p> The following rules are used to interpret glob patterns: * --- 348,358 ---- * <td><code>C:\\*</code> * <td>Matches <code>C:\foo</code> and <code>C:\bar</code> on the Windows * platform (note that the backslash is escaped; as a string literal in the * Java Language the pattern would be <code>"C:\\\\*"</code>) </td> * </tr> ! * </tbody> * </table> * </blockquote> * * <p> The following rules are used to interpret glob patterns: *
< prev index next >