|
Answer» I want to be ABLE to download a type of file and not have to manually move it to a directory
I'm kinda not great with batch files but I tried this which didn't work for some reason
Code: [SELECT]ECHO off copy C:\Documents and Settings\Owner\Desktop\*.rec c:\PROGRAM files\Microsoft Games\Age of Mythology\savegame
But it SAYS filename cannot be found :S
Quote from: nomrid on December 04, 2008, 08:18:00 PM I want to be able to download a type of file and not have to manually move it to a directory
I'm kinda not great with batch files but I tried this which didn't work for some reason
Code: [Select]echo off copy C:\Documents and Settings\Owner\Desktop\*.rec c:\program files\Microsoft Games\Age of Mythology\savegame
But it says filename cannot be found :S
try
Code: [Select]echo off copy "C:\Documents and Settings\Owner\Desktop\*.rec" "c:\program files\Microsoft Games\Age of Mythology\savegame"
Quote from: BC_Programmer on December 04, 2008, 08:19:48 PM
Quote from: nomrid on December 04, 2008, 08:18:00 PMI want to be able to download a type of file and not have to manually move it to a directory
I'm kinda not great with batch files but I tried this which didn't work for some reason
Code: [Select]echo off copy C:\Documents and Settings\Owner\Desktop\*.rec c:\program files\Microsoft Games\Age of Mythology\savegame
But it says filename cannot be found :S
try
Code: [Select]echo off copy "C:\Documents and Settings\Owner\Desktop\*.rec" "c:\program files\Microsoft Games\Age of Mythology\savegame"
Problem solved.
|