I would like to know how could I move all files from a folder to another folder with a command line.
Let's say I'm in my Downloads folder and there are a 100 files that I would like to move to my Videos folder, without having to write all the files name.
Open a terminal and execute this command:
It will move all the files and folders from Downloads folder to Videos folder.
To move all files, but not folders:
If you are interested in moving all files (but not folders) from Downloads folder to Videos folder, use this command
To move only files from the Download folders, but not from sub-folders:
If you want to move all files from the Downloads folder, but not any files within folders in the Download folder, use this command:
here,
-maxdepth
option specifies how deep find should try,1
means, only the directory specified in the find command. You can try using2
,3
also to test.See the Ubuntu find manpage for a detailed explanation
It will move all the files including subfolders in the directory you want to
mv
. If you want tocp
(copy) orrm
(remove) you will need the-r
(recursive) option to include subfolders.For the simple case:
If you want to move dot (hidden) files too, then set the dotglob shell option.
This leaves the shell option set.
For one time dotglob use, run the commands in a subshell:
It's possible by using
rsync
, for example:where:
If you've root privileges, prefix with
sudo
to override potential permission issues.To move a directory with or without content to its new name just like how you would use the
mv
command to rename a file:mv -T dir1 dir2
where:
-T
treats the destination as a normal filedir1
is the original name of the directorydir2
is the new name of the directoryNB:
dir2
doesn't have to exist.I hope this saves someone a lot of time, as a noob, before this, I would create a directory with the new name and then move the contents of the directory to the directory created earlier.
Use for subdirectories
This command is useful when many files have been saved in a subfolder of the target directory i.e.
Downloads/mp4
. In this example, runningmv -T Downloads/mp4 Videos
will result inmp4
subfolder being removed and all files contained inside are moved to Videos folder.Use
I hope this helps. Because I had the same pain and wasted a lot of time fixing my mistake.
here you have to put forward slash and
*
after source path so that it will take files inside source_path instead of the complete source directory.Example:
mv /home/username/test/* /home/username/test2/
The above command moves all files (unless they are hidden) in the source directory to the destination directory.
cd folderNamehere
pwd
. This will print the directory you want to move it too.cd folderNamehere
mv *.* typeAnswerFromStep2here
That will move all files from that directory to the other.
try it
-type with the argument -type you can specify type file.on this statement that is the mean file.if using of -d that means directory.
-iname: the most common and obvious method to look for a file is using its -name argument.if you are not sure about its case-sensitivity you can use of -iname argument
mv {} and finally to specify target directory and then moving the files on there using mv {} argument
This command should do it:
It moves all visible and hidden files, and doesn't throw unnecessary errors, not even if the source directory is empty.