Minecraft Blogs / Tutorial

[Texture Pack] Code to clean up directory before you begin

  • 371 views, 2 today
  • 2
  • 0
  • 6
Mikemc's Avatar Mikemc
Level 36 : Artisan Blockhead
8
Here's some code to clean up a freshly unpacked minecraft.jar that will delete all .class files and remove the following folders:
com, lang, net, paulscode, META-INF
* If META-INF isn't there, it'll say something like "Cannot find file specified", just ignore that.

Create a new text file with this code and save it with the extension .bat. (mc_texturepack_new.bat for example).
This is called a 'Batch' file. Place this file in a freshly extracted minecraft.jar folder and run it.

--- Copy text below this line ---
@ECHO OFF
ECHO This file will delete all .class files and remove the following folders:
ECHO com, lang, net, paulscode
ECHO _
ECHO Close the box if you no NOT want this.
pause
del *.class
rd /Q /S com
rd /Q /S lang
rd /Q /S net
rd /Q /S paulscode
rd /Q /S META-INF
ECHO _
ECHO Done.
pause
--- Copy text above this line ---

Notes on the commands:
@ECHO OFF
Commands and text will show up in the command window if this is not off.
ECHO
Display any text typed after this, within the same line. "ECHO _" is used because you cannot echo a blank line.
pause
Wait for a key to be pressed before continuing
del
Delete a file - use del /? to get help
rd
Remove Directory - removes a folder or tree (subfolders), use rd /? to get help
' * '
Asterix means everything so *.png would mean all files with .png extension, and yourmom.* is all forms of yourmom.
Tags

Create an account or sign in to comment.

1
06/28/2012 12:47 am
Level 16 : Journeyman Miner
happyday887101
happyday887101's Avatar
Why would you want to do that though? Happy is confuzed xD
1
07/02/2012 12:54 am
Level 36 : Artisan Blockhead
Mikemc
Mikemc's Avatar
Because a texture pack should only have textures in it.
1
07/02/2012 11:36 am
Level 16 : Journeyman Miner
happyday887101
happyday887101's Avatar
But what does that have to do with the .classes?
1
07/02/2012 11:37 am
Level 16 : Journeyman Miner
happyday887101
happyday887101's Avatar
Oh! I understand! To get the texture pack files! duh! I am such an idiot at times haha!
1
04/25/2012 10:22 am
Level 40 : Master Goblin
ItsBill
ItsBill's Avatar
This would be pretty useful... thanks.
1
04/25/2012 9:59 am
Level 27 : Expert Dragon
SkyTheVenture98
SkyTheVenture98's Avatar
So easy... :P
Planet Minecraft

Website

© 2010 - 2024
www.planetminecraft.com

Welcome