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