// Get the new folder name
func getNewFolderName(m tag.Metadata) (string, error) {
	artist := m.AlbumArtist()

	if artist == "" {
		artist = m.Artist()
	}

	year := strconv.Itoa(m.Year())
	album := m.Album()

	if len(artist) == 0 {
		return "", errors.New("Artist not found")
	}

	if year == "0" {
		return "", errors.New("Year not found")
	}

	if len(album) == 0 {
		return "", errors.New("Album not found")
	}

	folder := artist + " - " + year + " - " + album

	return folder, nil
}