\n
실제로 출력에서 어떻게 작동합니까? 현재 그것은 단지 하나의 긴 블록으로 그것을 씁니다. 도움을 주셔서 감사합니다
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