| java.lang.Object org.apache.velocity.texen.util.FileUtil
FileUtil | public class FileUtil (Code) | | A general file utility for use in the context
author: Leon Messerschmidt author: Jason van Zyl version: $Id: FileUtil.java 463298 2006-10-12 16:10:32Z henning $ |
Method Summary | |
public static File | file(String s) A method to get a File object.
Parameters: s - path to file object to create. | public static File | file(String base, String s) A method to get a File object. | public static String | mkdir(String s) Creates the directory s (and any parent directories needed).
Parameters: s - path/directory to create. |
file | public static File file(String s)(Code) | | A method to get a File object.
Parameters: s - path to file object to create. File created file object. |
file | public static File file(String base, String s)(Code) | | A method to get a File object.
Parameters: base - base path Parameters: s - file name File created file object. |
mkdir | public static String mkdir(String s)(Code) | | Creates the directory s (and any parent directories needed).
Parameters: s - path/directory to create. report of path/directory creation. |
|
|