can someone help me with a dos script to move all files from one location to another location
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
IE, if you wanted to move all files from c:\test\ to c:\test2
if you want to suppress the prompt to overwrite files
If you want to move from the current directory, you can specify just the
*.*. Also you can do relative paths. So if you want to move the current directory’s files up one directory, you’d do..being the shortcut for “up one directory”If it’s across the network, you can use a UNC path to authenticate as the user you’re logged in as or map a drive (using the
NET USEcommand) to specify a username/password on the remote computer, then copy using that drive letter. You can then delete the drive letter after you’re done. UNC paths look like\\computer\share\folder\file.txt