

InterviewSolution
Saved Bookmarks
1. |
Solve : Batch File, moves only jpg? |
Answer» <html><body><p>Hello all. <br/>Been <a href="https://interviewquestions.tuteehub.com/tag/coming-922990" style="font-weight:bold;" target="_blank" title="Click to know more about COMING">COMING</a> to this site for <a href="https://interviewquestions.tuteehub.com/tag/years-239545" style="font-weight:bold;" target="_blank" title="Click to know more about YEARS">YEARS</a> for answers.<br/><br/>I do a lot of 4chan surfing an even have an auto download tool (beware it <a href="https://interviewquestions.tuteehub.com/tag/cares-244056" style="font-weight:bold;" target="_blank" title="Click to know more about CARES">CARES</a> less what it grabs lol)<br/><br/>so I have alot of mix file types I'd like a bat to send to their own folders. <br/>I'm using win7 (netbook) <br/><br/>I thought this would work for sure<br/><br/>echo on<br/>move *.JPG C:\Users\******\Documents\Batch Testing 2\File Sort testing<br/>pause<br/><br/>I'm getting " Cannot move multiple files to a single file "<br/><br/>I had a <a href="https://interviewquestions.tuteehub.com/tag/feeling-986094" style="font-weight:bold;" target="_blank" title="Click to know more about FEELING">FEELING</a> to try another drive so I plugged my flashdrive in an it worked fine.<br/><br/>does the C drive stop such ?<br/>Try This<br/><br/><br/>move *.JPG C:\Users\******\Documents\"Batch Testing 2"\"File Sort testing"\*.* Quote</p><blockquote>C:\Users\******\Documents\Batch Testing 2\File Sort testing</blockquote> <br/>Does this folder actually exist?<br/> Quote from: Salmon Trout on September 23, 2010, 03:44:25 PM<blockquote>Does this folder actually exist?<br/><br/></blockquote> <br/>Yeah, the ***** is my name so I did that <br/><br/> Quote from: mat123 on September 23, 2010, 03:22:01 PM<blockquote>Try This<br/><br/><br/>move *.JPG C:\Users\******\Documents\"Batch Testing 2"\"File Sort testing"\*.*<br/></blockquote> nope. got this <br/><br/>C:\Users\******\Documents\Batch Testing 2\File Sort testing>move *.JPG C:\<br/>Users\*******\Documents\"Batch Testing 2"\"File Sort testing"\*.*<br/>The syntax of the command is incorrect.<br/><br/>C:\******\Documents\Batch Testing 2\File Sort testing>pause<br/>Press any key to continue . . .The quotes need to go around the whole path<br/><br/> Code: <a>[<a href="https://interviewquestions.tuteehub.com/tag/select-630282" style="font-weight:bold;" target="_blank" title="Click to know more about SELECT">SELECT</a>]</a>move *.JPG "C:\Users\******\Documents\Batch Testing 2\File Sort testing"<br/>this should do it<br/>Graham Quote from: gpl on September 24, 2010, 12:32:52 AM<blockquote>The quotes need to go around the whole path<br/><br/> Code: <a>[Select]</a>move *.JPG "C:\Users\******\Documents\Batch Testing 2\File Sort testing"<br/>this should do it<br/>Graham<br/></blockquote> <br/>Success <br/>When I was added the path for the source it " syntax of the command is incorrect."<br/>however when I ran it in the source folder it works fine.</body></html> | |