Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FileSystem#deleteRecursively(path) #416

Open
vanniktech opened this issue Nov 18, 2024 · 1 comment
Open

FileSystem#deleteRecursively(path) #416

vanniktech opened this issue Nov 18, 2024 · 1 comment
Labels

Comments

@vanniktech
Copy link

okio's FileSystem has deleteRecursively which is handy when deleting a directory. This is missing in the kotlinx io FileSystem.

@qwwdfsad qwwdfsad added the fs label Nov 18, 2024
@westnordost
Copy link

westnordost commented Mar 3, 2025

So, something like this.

/**
 * Delete the given path, recursively if it is a directory.
 *
 * @throws kotlinx.io.files.FileNotFoundException - when [path] does not exist and [mustExist] is
 *         `true`
 * @throws kotlinx.io.IOException if there was an underlying error preventing listing the [path]'s
 *         children if it was a directory
 * */
fun FileSystem.deleteRecursively(path: Path, mustExist: Boolean = true) {
    val isDirectory = metadataOrNull(path)?.isDirectory ?: false
    if (isDirectory) {
        for (child in list(path)) {
            deleteRecursively(child, mustExist)
        }
    }
    delete(path, mustExist)
}

Though, I think generally it would be more useful to have an interface similar to kotlin.io.FileTreeWalk, i.e. have a Sequence of Path returned. Because with this kind of interface, a broader range of use cases would be covered. With that interface, a (recursive) delete of files could look like this

FileSystem.walkBottomUp(path).forEach { FileSystem.delete(it) }

which would be super-straightforward.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants