Occasionally, I need to move android resources from one project into another. For example, Android Holo Colors outputs a .zip file that when extracted yields a res folder with the usual Android directory structure.
res/
- drawable-ldpi/
- drawable-mdpi/
- drawable-hdpi/
- drawable-xhdpi
Usually, a different sized resource is placed in each directory with the same name. So, button.png would exist in drawable-ldpi, drawable-mdpi, drawable-hdpi, and drawable-xhdpi. What command or script could be used to copy or move the outputted drawable folders into my project at once without copying over the entire res directory and overwritten other files?
mvdoes not move directories but its content.You should use
The remove what you don’t want from orig.