|
-
Jun 20th, 2007, 08:49 AM
#1
Thread Starter
Fanatic Member
fiole splitter
Hi. I want to ask that how file splitter works? Is the first step is to convert it to text file?
Dont rely only on your luck. Work hard until You get success.
vb Code:
Private sub Time_ispassing
While Me.Notgetsuccess
trygain=tryagain+1
Me.workhard
wend
end sub
-
Jun 20th, 2007, 08:50 AM
#2
Re: fiole splitter
File Splitter? I'm not familiar with that.
-
Jun 21st, 2007, 07:18 AM
#3
Frenzied Member
Re: fiole splitter
Do you mean a program that takes a big file and cuts it into smaller files?
(so that they may fit on a limited medium)
A file is just a row of bytes.
To split it into x-sized bits you just open the files, read the first x bytes, save them to a new file, read the next x bytes, etc.
Restoring the file goes in reverse order.
Read the first part, save it to the original file, read the next part, append it to the original file, etc.
Data about the original filename, the sequence of the parts, etc can be saved in the parts' filenames, a seperate file or as a header for the parts.
-
Jun 22nd, 2007, 06:24 AM
#4
Thread Starter
Fanatic Member
Re: fiole splitter
Thanks for infomation. But it can also be done by first converting it to text file and then divide those text into some no. of equal parts and when u want to join it append all the text to a text file in suitable order and then again convert it to original ext. right?
Dont rely only on your luck. Work hard until You get success.
vb Code:
Private sub Time_ispassing
While Me.Notgetsuccess
trygain=tryagain+1
Me.workhard
wend
end sub
-
Jun 22nd, 2007, 05:38 PM
#5
Frenzied Member
-
Jun 23rd, 2007, 01:08 AM
#6
Thread Starter
Fanatic Member
Re: fiole splitter
I want to make a file splitter.
Dont rely only on your luck. Work hard until You get success.
vb Code:
Private sub Time_ispassing
While Me.Notgetsuccess
trygain=tryagain+1
Me.workhard
wend
end sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|