Qt下如何修改文件的时间
Posted 朝闻道
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt下如何修改文件的时间相关的知识,希望对你有一定的参考价值。
提供一个全平台修改文件的时间的方法,希望大家喜欢
/* UTIME.C: This program uses _utime to set the
* file-modification time to the current time.
* utime.c is a file you should change it by yourself
*/
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#ifdef WIN32
#include <sys/utime.h>
#define SHOWCMD "dir utime.c"
#else
#define _utime utime
#define _utimbuf utimbuf
#include <utime.h>
#define SHOWCMD "ls -l utime.c"
#endif
void main( void )
{
/* Show file time before and after. */
system( SHOWCMD );
if( _utime( "utime.c", NULL ) == -1 )
perror( "_utime failed\n" );
else
printf( "File time modified\n" );
system( SHOWCMD );
}
http://www.heilqt.com/topic/556ea6e10654374f37a52a15
以上是关于Qt下如何修改文件的时间的主要内容,如果未能解决你的问题,请参考以下文章
在Tomcat的安装目录下conf目录下的server.xml文件中增加一个xml代码片段,该代码片段中每个属性的含义与用途
26.Qt Quick QML-RotationAnimationPathAnimationSmoothedAnimationBehaviorPauseAnimationSequential(代码片段