Resolves two paths. @param path file path (relative or absolute) @return resulting path
(final String path)
| 187 | * @return resulting path |
| 188 | */ |
| 189 | public IOFile resolve(final String path) { |
| 190 | final IOFile f = new IOFile(path); |
| 191 | return f.absolute ? f : new IOFile(isDir() ? pth : dir(), path); |
| 192 | } |
| 193 | |
| 194 | /** |
| 195 | * Recursively creates the directory if it does not exist yet. |