如何通过C++修改系统时间? 20

小生是初学者,希望各位大虾解释的详细一点。... 小生是初学者,希望各位大虾解释的详细一点。 展开
 我来答
正青春梦飞扬

推荐于2017-08-29 · 知道合伙人互联网行家
正青春梦飞扬
知道合伙人互联网行家
采纳数:6837 获赞数:306021
对SEO有这独特见解 工作努力积极、团结同事 连续2个月个人工作完成优秀 客户0投诉 评委最佳班组经理

向TA提问 私信TA
展开全部
通过第一个参数的修改时间,修改第二个文件参数的修改时间;
参考如下:
#include <time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <iostream>
#include <string>

using namespace std;
void main( int argc,char* argv[] )
{
if(argc<2)
{
cout<<"No arguments"<<endl;
exit(1);
}

string file1,file2;
file1=argv[1];
file2=argv[2];
struct stat buf1;
struct stat buf2;
int result1,result2;
//获得文件状态信息
result1 =stat( file1.c_str(), &buf1 );
result2 =stat( file2.c_str(), &buf2 );
//显示文件状态信息
if( result1 != 0 )
perror( "显示文件状态信息出错" );
else
{
cout<<"最后修改日期1:"<<ctime(&buf1.st_mtime);
}

//显示文件状态信息
if( result1 != 0 )
perror( "显示文件状态信息出错" );
else
{
cout<<"最后修改日期2:"<<ctime(&buf2.st_mtime);
}

buf2.st_mtime=buf1.st_mtime;
cout<<"最后修改日期3:"<<ctime(&buf2.st_mtime);
}
百度网友f56c104
2006-11-04 · TA获得超过136个赞
知道答主
回答量:83
采纳率:0%
帮助的人:92.9万
展开全部
如下运用:
获取系统时间
SYSTEMTIME curr_st;
GetLocalTime(&curr_st);
修改系统时间
curr_st.wYear=2006;
curr_st.wMonth=12;
curr_st.wDay=1;
curr_st.wHour=3;
curr_st.wMinute=33;
curr_st.wSecond=59;
curr_st.wMilliseconds=999;
SetLocalTime(&curr_st);
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式