摘要: 用VC++6.0的编译环境,建的是win32 console application#include <stdafx.h>#include <string.h>#include <windows.h>DWORD ShowFileTime(PFILETIME lptime){ //文件时间结构 FILETIME ftLocal; //系统时间结构 SYSTEMTIME st; //调整为系统所在时区的时间 FileTimeToLocalFileTime(lptime,&ftLocal); //将文件时间转换为SYSTEMTIME格式,便于显示 File 阅读全文
posted @ 2013-05-20 18:17 dkcndk 阅读(4880) 评论(0) 推荐(0) 编辑