***********************************************************************
			SPLIT-MERGE FILES
                           VERSION 1.0
			  DEVELOPED BY
                          SUVADEEP DEY
***********************************************************************

Description:-
--------------

This is a console based application which will split files which are more than 1 MB in size and also merge them.The splitting will be done in multiples of 1 MB.
The Files will be created in the directory in which the program is run.It is run in the following way:

	java -jar SplitFile.jar <filename> <size e.g. 1,2,...n>

After running the above application files will have their name as the filename specified above and will be created with a number starting from 1 and .suv as a suffix.
So a name which is test.zip will have chunks like test.zip1.suv,test.zip2.suv,test.zip3.suv and so on.

For these files to be merged again to the original file run the program
	java -jar MergeFile.jar <list of space separated chunks>
The arguements should be serially specified i.e. starting from test.zip1.suv,test.zip2.suv,... and so on.

System Requirements:-
************************
1) JRE 1.2 and above

Testing:-
**********
The applications have been tested on Windows 2000 Professional and with files having .pdf,.zip,.exe,.bmp,.jpg extension.