自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(0)
  • 资源 (2)
  • 收藏
  • 关注

空空如也

outlook inbox 操作

直接mapi读取inbox内容。 STDMETHODIMP ListMessages( LPMDB lpMDB, LPMAPIFOLDER lpInboxFolder); STDMETHODIMP OpenDefaultMessageStore( LPMAPISESSION lpMAPISession, LPMDB * lpMDB); STDMETHODIMP OpenInbox(LPMDB lpMDB, LPMAPIFOLDER *lpInboxFolder);

2013-04-10

FTP下载,基于socket实现.

//函数说明:普通方式下载Ftp文件。 int Get( const string & strRemoteFile , const string & strLocalFile ) ; //函数说明:多线程方式下载Ftp文件。 int Get( const string & strRemoteFile , const string & strLocalFile , const unsigned int nThreadNumber ) ; //函数说明:上载Ftp文件,支持断点方式上传。 int Put( const string & strLocalFile , const string & strRemoteFile ) ; //函数说明:删除指定的文件。 int Delete( const string & strRemoteFile ) ; //函数说明:删除指定的文件夹。 int DeleteDirectory(const string & strPath ) ; //函数说明:创建路径。 int CreateDirectory( const string & strPath ) ; //函数说明:重新命名FTP文件名。 int Rename(const string & strRemoteFile , const string & strNewFile ) ; //函数说明:切换工作路径。 int CD( const string & strPath ) ; //函数说明:显示当前用户登录的默认路径。 const char * PWD( void ) ; //函数说明:显示指定路径的文件列表。 const char * Dir( const string & strPath ) ; //函数说明:显示指定路径的文件大小。 unsigned long GetSize( const string & strPath ) ;

2010-03-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除