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