All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.content.commons.io.FileRemover Maven / Gradle / Ivy

There is a newer version: 3.0.15
Show newest version
package org.springframework.content.commons.io;

import java.io.File;

public class FileRemover implements InputStreamObserver, OutputStreamObserver {

    private File file;

    public FileRemover(File file) {
        this.file = file;
    }


    @Override
    public void closed() {
        this.file.delete();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy