blob: 98ceba628ac6e569dd3d9b09994ada44ed1137d1 [file] [edit]
package containerfs
import "os"
// EnsureRemoveAll is an alias to [os.RemoveAll] on Windows.
func EnsureRemoveAll(path string) error {
return os.RemoveAll(path)
}