Comment puis-je faire \n
fonctionne réellement dans ma production ? Pour l'instant, tout est écrit dans un seul long bloc. Merci pour toute aide
Dir.chdir 'C:/Users/name/Music'
music = Dir['C:/Users/name/Music/*.{mp3, MP3}']
puts 'what would you like to call the playlist?'
@new = ''
playlist_name = gets.chomp + '.m3u'
music.each do |z|
@new += z + '\n'
end
File.open playlist_name, 'w' do |f|
f.write @new
end