Register

If this is your first visit, please click the Sign Up now button to begin the process of creating your account so you can begin posting on our forums! The Sign Up process will only take up about a minute of two of your time.

Follow us on Facebook Follow us on Twitter Linked In Flickr Watch us on YouTube Google+
Results 1 to 5 of 5
  1. #1
    Junior Member DavidHunt's Avatar
    Join Date
    Jul 2010
    Posts
    3
    Downloads
    0
    Uploads
    0

    Minecraft Save Location?

    Is there a way to change were my Minecraft saves save and load, because I keep Minecraft on a USB and all my saves there too, So I wanna load them off the USB and save them on the USB.

    P.S I'm using Windows so I downloaded Minecraft.exe so Minecraft.exe is the one on my USB w/ my saves

    Thanks

  2. #2
    Unregistered
    Guest
    try making a batch file that copy's all the items in your minecraft folder to the folder on you usb drive. so when your done playing, run the batch file and your files wil be copied. sorry for slow response.ill give you an example for windows 7

    xcopy "C:\Users\sam\AppData\Roaming\.minecraft\" I:\minecraftsaves /E

    where I:\ is the flash drive directory
    this does take a while (due to the amount of files) but it copys the minecraft folder onto your flashdrive. if you want just the folder with saves use this

    xcopy "C:\Users\sam\AppData\Roaming\.minecraft\saves " I:\minecraftsaves /E

    where I:\ is the flash drive directory. now for loading the saves onto your c:\drive try this one

    xcopy "I:\minecraftsaves" C:\Users\sam\AppData\Roaming\.minecraft\saves /E

    of course you could also make a batch file with both the files information into one to make a list of options, making it go like this::

    @echo off
    :restart
    echo Would you like to save or load minecraft saves?
    echo Type l or s to save or load. press e to exit
    set input=
    set /p input=l,s, or e?
    if %input%==l goto load
    if %input%==s goto save
    if %input%==e goto exit
    echo not a valid input
    goto restart


    :save
    echo (type a)
    xcopy "C:\Users\sam\AppData\Roaming\.minecraft\saves " I:\folder /E
    echo Saves Successfully Copied
    pause
    exit

    :load
    echo (type a)
    xcopy "I:\folder" C:\Users\sam\AppData\Roaming\.minecraft\saves /E
    echo Saves Successfully Loaded
    pause
    exit

    :exit
    exit~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~

    How ever, i have taken the liberty to upload them for you in case you dont know how to use a batch file. also, you must right click edit the file and change the drive letter maually to match your usb drive letter or it wont work. also, keep in mind im using windows 7, i have no idea where saves go on other windows versions, however you can change the path to meet your needs
    ~~Sam

  3. #3
    Unregistered
    Guest
    sorry, forgot the link
    minecraft copy saves.bat
    ~~Sam

  4. #4
    Unregistered
    Guest
    ok, ill just pm it to you then. wouldnt let me post the link hah

  5. #5
    Unregistered
    Guest



Similar Threads

  1. Replies: 0
    Last Post: 01-20-2011, 10:19 PM
  2. Minecraft Save Location?
    By David Hunt in forum Software & Hardware
    Replies: 0
    Last Post: 07-31-2010, 03:16 PM
  3. Replies: 0
    Last Post: 03-17-2009, 10:06 PM
  4. Replies: 0
    Last Post: 07-20-2008, 03:40 PM
  5. Replies: 0
    Last Post: 09-19-2007, 10:59 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -4. The time now is 06:43 AM.
Powered by vBulletin® Version 4.2.5
Copyright © 2024 vBulletin Solutions Inc. All rights reserved.