resolveFileWithPath

open suspend fun resolveFileWithPath(dir: KmpFsRef, path: String, create: Boolean = false): Outcome<KmpFsRef, KmpFsError>

Resolves a file with a path that is not required to be a direct descendant of dir.

Parameters

dir

The parent directory

path

The relative path of the file from dir. This can be a Windows or Unix path.

create

If true all directory segments will be created if they do not already exist

Example:

resolveNestedFile(KmpFs.Internal.root, "/dir1/dir2/dir3/dir4/test.txt", create = true)