您好,欢迎光临本网站![请登录][注册会员]  
文件名称: 公司用的TRACE存储限制
  所属分类: C++
  开发工具:
  文件大小: 2kb
  下载次数: 0
  上传时间: 2012-03-11
  提 供 者: wanghanl********
 详细说明: unsigned int size; std::list< std::string > files; void initialize() { if( _access( "filelist.txt", 06 ) == 0 ) { // 如果文件存在则从文件中读取有效的文件名 std::ifstream file( "filelist.txt" ); std::string str; struct _stat buf; while( std::getline( file, str ) ) { if( !str.empty() ) { files.push_back( str ); if( 0 == _stat( str.c_str(), &buf; ) ) { size += buf.st_size; } } } } else { // 如果文件不存在则以默认的时间作为先后顺序 struct _finddata_t fileinfo; intptr_t hand = _findfirst( "E:\\source\\repos\\trace\\Debug\\*.tlog", &fileinfo; ); if( hand == -1 ) { return; } files.push_back( fileinfo.name ); while( _findnext( hand, &fileinfo; ) == 0 ) { files.push_back( fileinfo.name ); size += fileinfo.size; } _findclose( hand ); } files.sort(); } void DeleteOldTrace() { struct _stat buf; if( 0 == _stat( "cur.tmf", &buf; ) ) { size += buf.st_size; } // 删除最早的文件 std::string str; std::string path = "E:\\source\\repos\\trace\\Debug\\"; std::list< std::string >::iterator it = files.begin(); while( size >= 1*1024 && it != files.end() ) { str = path + it->c_str(); if( 0 == _stat( str.c_str(), &buf; ) ) { size -= buf.st_size; remove( str.c_str() ); it = files.erase( it ); } else { ++it; } } // 重新写入到文件中 str = path + "filelist.txt"; std::ofstream file( str.c_str() ); if( file.is_open() ) { for( it = files.begin(); it != files.end(); ++it ) { file << (*it) << "\n"; } file.close(); } } ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 输入关键字,在本站1000多万海量源码库中尽情搜索: