Forum     

Go Back   Digit Technology Discussion Forum > Community > Tutorials
Register FAQ Calendar Mark Forums Read

Tutorials This section offers tutorials and How to's on just about anything related to computers and IT. Note: All tutorials are courtesy the posters and not verified by Digit

Closed Thread
 
LinkBack Thread Tools Display Modes
Old 14-12-2006, 10:52 AM   #1 (permalink)
Apprentice
 
Join Date: Mar 2004
Location: Bangalore, India
Posts: 56
Default Joining Files W/o any Software using MSDOS

Thanx to the author who found out this.... Source not know...

wanted to share with u guyz


i thought to share this with u as i found many people dont knw how to join files

one either use hsplit, a freeware
or


go to command prompt

suppose the folder where the files are @ c:\hmv\, then type

cd c:\windows\mamoo


now if the splitted filesnames are x.rar.001 x.rar.002 x.rar.003 and the final filename is to be x.rar, then type


copy /b x.rar.001 + x.rar.002 + x.rar.003 x.rar



the /b means copying binary
dnt 4get the "+" between the parts



Enjoy
__________________
It's the FEELINGS that makes you a HUMAN..

It's the ATTITUDE that makes me GOD
hmvrulz is offline  
Advertisements. Register and be a member of the community to get rid of them.
Advertisement

Old 14-12-2006, 11:29 AM   #2 (permalink)
Apprentice
 
subhajitmaji's Avatar
 
Join Date: Oct 2006
Posts: 54
Default Re: Joining Files W/o any Software using MSDOS

Thanx for the tricks
__________________
Driving on the highway is not a competition. It is a co-operation, the sharing of a limited resource.
subhajitmaji is offline  
Old 14-12-2006, 08:54 PM   #3 (permalink)
The Thread Killer >:)
 
phreak0ut's Avatar
 
Join Date: Apr 2006
Location: Bangalore
Posts: 1,182
Default Re: Joining Files W/o any Software using MSDOS

Hey this is a really nice thing. I'll give it a shot once I finish downloading a movie
__________________
Want to make this world a better place? Then, start seeding and don't be just a leecher
phreak0ut is offline  
Old 14-12-2006, 09:00 PM   #4 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2006
Posts: 47
Default Re: Joining Files W/o any Software using MSDOS

this also called merging of two files try this codes in c
#include<stdio.h>
void main()
{
FILE *fp1, *fp2, *fp3;
char nm1[20],nm2[20],nm3[20], ch;

printf("\n A prog. for MERGING 2 files in to a 3rd file ...\n\n\n");
printf("\nEnter the 1st source file name: ");
gets(nm1);
if((fp1=fopen(nm1,"r")) == NULL)
{
printf("\nUnable to open the file '%s' for reading ....", nm1);
getch();
exit();
}
printf("\nEnter the 2nd source file name: ");
gets(nm2);
if((fp2=fopen(nm2,"r")) == NULL)
{
printf("\nUnable to open the file '%s' for reading ....", nm2);
getch();
fclose(fp1);
exit();
}

printf("\nEnter the merged file name: ");
gets(nm3);
if((fp3=fopen(nm3,"a")) == NULL)
{
printf("\nUnable to open the file '%s' for reading ....", nm3);
getch();
fclose(fp1);
fclose(fp2);
exit();
}
while((ch=getc(fp1))!=EOF)
putc(ch,fp3);
fclose(fp1);
while((ch=getc(fp2))!=EOF)
putc(ch,fp3);
fclose(fp2);
fclose(fp3);
getch();
}
sre06 is offline  
Old 14-12-2006, 09:14 PM   #5 (permalink)
filth is me
 
forever's Avatar
 
Join Date: Apr 2006
Posts: 296
Default Re: Joining Files W/o any Software using MSDOS

^^^ will the above programe work for video files and others too , have u tried it out ??
forever is offline  
Old 14-12-2006, 09:51 PM   #6 (permalink)
Right Off the Assembly Line
 
Join Date: Sep 2006
Posts: 47
Default Re: Joining Files W/o any Software using MSDOS

may br try by giving extension
sre06 is offline  
Old 22-12-2006, 06:33 PM   #7 (permalink)
The Thread Killer >:)
 
phreak0ut's Avatar
 
Join Date: Apr 2006
Location: Bangalore
Posts: 1,182
Unhappy Re: Joining Files W/o any Software using MSDOS

Quote:
Originally Posted by forever
^^^ will the above programe work for video files and others too , have u tried it out ??
Tried it on a video file. But it didn't work
__________________
Want to make this world a better place? Then, start seeding and don't be just a leecher
phreak0ut is offline  
Closed Thread

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT +5.5. The time now is 05:55 PM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.

Search Engine Optimization by vBSEO 3.3.2