Click here to Skip to main content
15,892,746 members
Articles / Desktop Programming / ATL

SAWZip - zip file manipulation control

Rate me:
Please Sign up or sign in to vote.
4.56/5 (6 votes)
29 Aug 2001 357.5K   5.4K   58  
An ATL based control for reading and writing zip files.
// FileTarget.h: interface for the CFileTarget class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_FILETARGET_H__DF0D7EA2_E7FE_11D4_BFE2_AA52A932094E__INCLUDED_)
#define AFX_FILETARGET_H__DF0D7EA2_E7FE_11D4_BFE2_AA52A932094E__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "ExtractTarget.h"
#include "FileHandle.h"

class CFileTarget : public CExtractTarget  
{
public:
	CFileTarget(const cstring &fileName, const DWORD anExternalAttr);
	void write(CBuffer &aBuffer, const DWORD aSize);
	inline bool isValid() { return m_file.isValid(); }
	virtual ~CFileTarget();
private:
	CFileHandle m_file;
};

#endif // !defined(AFX_FILETARGET_H__DF0D7EA2_E7FE_11D4_BFE2_AA52A932094E__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Belgium Belgium
Programmer since 1991 using C/C++/Visual Basic and Java. Playing with wxWindows at home.

Comments and Discussions