2个回答
推荐于2017-08-29 · 知道合伙人互联网行家
正青春梦飞扬
知道合伙人互联网行家
向TA提问 私信TA
知道合伙人互联网行家
采纳数: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);
}
参考如下:
#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);
}
展开全部
如下运用:
获取系统时间
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);
获取系统时间
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);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询