Files
seanime/internal/library/filesystem/clean_test.go
2024-07-19 17:16:24 -04:00

17 lines
249 B
Go

package filesystem
import (
"seanime/internal/util"
"testing"
)
func TestDeleteEmptyDirectories(t *testing.T) {
path := "E:/ANIME_TEST"
RemoveEmptyDirectories(path, util.NewLogger())
t.Log("All empty directories removed successfully.")
}