CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 6 of 6
  1. #1
    Guest

    Splitting Files...

    I am looking for a way to split files into parts and then have ability to combine them again into one...

    Exmaple: I have 10MB file and I can run it thru function to divide the file into 10 smaller ones...
    on the other hand I need to be able to combine the small files into one 10 MB

    Thanks


  2. #2
    Join Date
    Jun 1999
    Location
    Pune, Maharastra, India
    Posts
    59

    Re: Splitting Files...

    I did it once the logic that i used was to open the file in binary mode and using get and put functions and using a byte array i was making smaller files out of it. Hope it helps you


  3. #3
    Join Date
    Sep 2000
    Posts
    4

    Re: Splitting Files...

    There is a great application called "Moving" which compresses
    files and directories splits them into small pieces and can even
    send them by mail.
    It can be downloaded from: www.domoving.com - Very recommended.




  4. #4
    Join Date
    Sep 2000
    Posts
    4

    Re: Splitting Files...

    There is a great application called "Moving" which compresses
    files and directories splits them into small pieces and can even
    send them by mail.
    It can be downloaded from:
    http://www.domoving.com - Very recommended.





  5. #5
    Join Date
    Sep 2000
    Posts
    2

    Re: Splitting Files...

    Thanks,

    Great application - helped me a lot.



  6. #6
    Join Date
    Sep 2000
    Posts
    2

    Re: Splitting Files...




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

Featured