CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2002
    Location
    ireland
    Posts
    291

    Archiving data/log files, ideas

    Hi,
    I'm looking for ideas or well known methods for archiving data files, implemented through .NET/C#.

    I have files which contain information on user web sessions. The data is presently being saved to files, size approx 50KB each. The files are presently being saved to a folder on the server machine. What I'm attempting todo is clear that folder at regular intervals, weekly maybe and archive the data for that week in another location on that server.
    The files should easilt be extracted later, manually, for use in an inhouse debugging tool.

    What is the done thing?
    Zip the files and then store ..

    Thanks,
    Eire.

  2. #2
    Join Date
    Nov 2002
    Location
    Singapore
    Posts
    1,890

    Re: Archiving data/log files, ideas

    take a look at Zip library implementation from opensource.
    it allows to archive. you need to build a service which will pick from the (configured one) folder and put it in right location (configured)

    you can take a look at

    http://www.gotdotnet.com/community/u....GotDotNet.com)

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