8282/**
8383 * <p>This class provides basic facilities for manipulating files and file paths.</p>
8484 *
85- * <h3 >Path-related methods</h3 >
85+ * <b >Path-related methods</b >
8686 *
8787 * <p>Methods exist to retrieve the components of a typical file path. For example
8888 * <code>/www/hosted/mysite/index.html</code>, can be broken into:
9595 * <p>There are also methods to {@link #catPath concatenate two paths}, {@link #resolveFile resolve a path relative to a
9696 * File} and {@link #normalize} a path.</p>
9797
98- * <h3 >File-related methods</h3 >
98+ * <b >File-related methods</b >
9999 *
100100 * <p>There are methods to create a {@link #toFile File from a URL}, copy a {@link #copyFileToDirectory File to a
101101 * directory}, copy a {@link #copyFile File to another File}, copy a {@link #copyURLToFile URL's contents to a File}, as
112112 * @author <a href="mailto:Christoph.Reck@dlr.de">Christoph.Reck</a>
113113 * @author <a href="mailto:peter@codehaus.org">Peter Donald</a>
114114 * @author <a href="mailto:jefft@codehaus.org">Jeff Turner</a>
115- * @version $Id$
115+ *
116116 */
117117public class FileUtils
118118{
@@ -988,6 +988,7 @@ public static void copyFileToDirectoryIfModified( final File source, final File
988988 * @param sourceBase The basedir used for the directory scan
989989 * @param dirs The getIncludedDirs from the dirscanner
990990 * @param destination The base dir of the output structure
991+ * @throws IOException io issue
991992 */
992993 public static void mkDirs ( final File sourceBase , String [] dirs , final File destination )
993994 throws IOException
@@ -1696,7 +1697,7 @@ public static long sizeOfDirectory( final File directory )
16961697 * @param includes the includes pattern, comma separated
16971698 * @param excludes the excludes pattern, comma separated
16981699 * @return a list of File objects
1699- * @throws IOException
1700+ * @throws IOException io issue
17001701 * @see #getFileNames(File, String, String, boolean)
17011702 */
17021703 public static List <File > getFiles ( File directory , String includes , String excludes )
@@ -1713,7 +1714,7 @@ public static List<File> getFiles( File directory, String includes, String exclu
17131714 * @param excludes the excludes pattern, comma separated
17141715 * @param includeBasedir true to include the base dir in each file
17151716 * @return a list of File objects
1716- * @throws IOException
1717+ * @throws IOException io issue
17171718 * @see #getFileNames(File, String, String, boolean)
17181719 */
17191720 public static List <File > getFiles ( File directory , String includes , String excludes , boolean includeBasedir )
@@ -1739,7 +1740,7 @@ public static List<File> getFiles( File directory, String includes, String exclu
17391740 * @param excludes the excludes pattern, comma separated
17401741 * @param includeBasedir true to include the base dir in each String of file
17411742 * @return a list of files as String
1742- * @throws IOException
1743+ * @throws IOException io issue
17431744 */
17441745 public static List <String > getFileNames ( File directory , String includes , String excludes , boolean includeBasedir )
17451746 throws IOException
@@ -1756,7 +1757,7 @@ public static List<String> getFileNames( File directory, String includes, String
17561757 * @param includeBasedir true to include the base dir in each String of file
17571758 * @param isCaseSensitive true if case sensitive
17581759 * @return a list of files as String
1759- * @throws IOException
1760+ * @throws IOException io issue
17601761 */
17611762 public static List <String > getFileNames ( File directory , String includes , String excludes , boolean includeBasedir ,
17621763 boolean isCaseSensitive )
@@ -1773,7 +1774,7 @@ public static List<String> getFileNames( File directory, String includes, String
17731774 * @param excludes the excludes pattern, comma separated
17741775 * @param includeBasedir true to include the base dir in each String of file
17751776 * @return a list of directories as String
1776- * @throws IOException
1777+ * @throws IOException io issue
17771778 */
17781779 public static List <String > getDirectoryNames ( File directory , String includes , String excludes ,
17791780 boolean includeBasedir )
@@ -1791,7 +1792,7 @@ public static List<String> getDirectoryNames( File directory, String includes, S
17911792 * @param includeBasedir true to include the base dir in each String of file
17921793 * @param isCaseSensitive true if case sensitive
17931794 * @return a list of directories as String
1794- * @throws IOException
1795+ * @throws IOException io issue
17951796 */
17961797 public static List <String > getDirectoryNames ( File directory , String includes , String excludes ,
17971798 boolean includeBasedir , boolean isCaseSensitive )
@@ -1811,7 +1812,7 @@ public static List<String> getDirectoryNames( File directory, String includes, S
18111812 * @param getFiles true if get files
18121813 * @param getDirectories true if get directories
18131814 * @return a list of files as String
1814- * @throws IOException
1815+ * @throws IOException io issue
18151816 */
18161817 public static List <String > getFileAndDirectoryNames ( File directory , String includes , String excludes ,
18171818 boolean includeBasedir , boolean isCaseSensitive ,
0 commit comments