Results 1 to 6 of 6

Thread: fiole splitter

  1. #1

    Thread Starter
    Fanatic Member vivek_master146's Avatar
    Join Date
    Apr 2006
    Location
    Delhi,India
    Posts
    787

    Post 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:
    1. Private sub Time_ispassing
    2. While Me.Notgetsuccess
    3. trygain=tryagain+1
    4. Me.workhard
    5. wend
    6. end sub

  2. #2
    I'm about to be a PowerPoster! Hack's Avatar
    Join Date
    Aug 2001
    Location
    Searching for mendhak
    Posts
    58,333

    Re: fiole splitter

    File Splitter? I'm not familiar with that.

  3. #3
    Frenzied Member
    Join Date
    Oct 2003
    Posts
    1,301

    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.

  4. #4

    Thread Starter
    Fanatic Member vivek_master146's Avatar
    Join Date
    Apr 2006
    Location
    Delhi,India
    Posts
    787

    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:
    1. Private sub Time_ispassing
    2. While Me.Notgetsuccess
    3. trygain=tryagain+1
    4. Me.workhard
    5. wend
    6. end sub

  5. #5
    Frenzied Member
    Join Date
    Oct 2003
    Posts
    1,301

    Re: fiole splitter

    Sure, but why would you?

  6. #6

    Thread Starter
    Fanatic Member vivek_master146's Avatar
    Join Date
    Apr 2006
    Location
    Delhi,India
    Posts
    787

    Re: fiole splitter

    I want to make a file splitter.
    Dont rely only on your luck. Work hard until You get success.
    vb Code:
    1. Private sub Time_ispassing
    2. While Me.Notgetsuccess
    3. trygain=tryagain+1
    4. Me.workhard
    5. wend
    6. 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
  •  



Click Here to Expand Forum to Full Width