Copy MP3 Files Into A New Directory

preview_player
Показать описание
In this video I will show you how to copy files into a new directory using Git Bash. In the video I "find" just mp3 files but you can filter that for any file of your choosing.

//How to make a new directory
mkdir "name of directory"

//How to make a new file
touch "name of file"

//The line I used to copy the files into the new directory
find -type f -name "*.mp3" -exec cp {} "your location" \;

my location in the video was /d/sansa-project/mp3files/
Рекомендации по теме
Комментарии
Автор

yoooo bro thank you so much, in the begging i had a media player playlist and wanted all the song of my playlist in one folder; so I tried a lot of thing like trying to extract the song form a wpl or a m3u but in the end I synced the playlist with an usb. but I was not satysfied as everything was inside wraped into folders, your video helped me alot. also I am a computer sience major and so your video not only teach me more about git bash with wich I have no experience, but also save me a lot of tame, thank you

Varysy