Thread
:
How to copy files in Maemo
View Single Post
massIV
2009-07-22 , 17:10
Posts: 36 | Thanked: 8 times | Joined on Jul 2008
#
3
Just use the command line.
to move files:
mv sourcefile destinationfile
example (move something from flash to memory card):
mv /home/user/MyDocuments/.images/pic1.jpg /media/mmc1/pics/
to copy files:
The same as above except use cp instead of mv
to copy/move multiple files (all files that end with .jpg extension):
cp /directory/*.jpg /media/mmc1/pics/
or (to copy all files)
cp /directory/* /media/mmc2/files/
Quote & Reply
|
The Following User Says Thank You to massIV For This Useful Post:
silvermountain
massIV
View Public Profile
Send a private message to massIV
Find all posts by massIV