(String fullFileName)
| 109 | } |
| 110 | |
| 111 | public static String getFileName(String fullFileName) { |
| 112 | if ( fullFileName==null ) return null; |
| 113 | File f = new File(fullFileName); // strip to simple name |
| 114 | return f.getName(); |
| 115 | } |
| 116 | |
| 117 | public static String getParent(String name) { |
| 118 | //System.out.println("getParent("+name+")="+p); |
no test coverage detected