5

我有以下代码:

int main(int argc, char** argv) {
    onelog a;
    std::cout << "a new project";

    //creates a file as varuntest.txt
    ofstream file("C:\\users\\Lenovo\\Documents\\varuntest.txt", ios::app);

    SYSTEMTIME thesystemtime;
    GetSystemTime(&thesystemtime);

    thesystemtime.wDay = 07;//changes the day
    thesystemtime.wMonth = 04;//changes the month
    thesystemtime.wYear = 2012;//changes the year

    //creation of a filetimestruct and convert our new systemtime
    FILETIME thefiletime;

    SystemTimeToFileTime(&thesystemtime,&thefiletime);

    //getthe handle to the file
    HANDLE filename = CreateFile("C:\\users\\Lenovo\\Documents\\varuntest.txt", 
                                FILE_WRITE_ATTRIBUTES, FILE_SHARE_READ|FILE_SHARE_WRITE,
                                NULL, OPEN_EXISTING, 
                                FILE_ATTRIBUTE_NORMAL, NULL);

    //set the filetime on the file
    SetFileTime(filename,(LPFILETIME) NULL,(LPFILETIME) NULL,&thefiletime);

    //close our handle.
    CloseHandle(filename);


    return 0;
}

现在的问题是;当我检查文件的属性时,它只会更改修改日期。我需要问一下;

如何更改文件的创建日期而不是修改日期?

谢谢

请给这个新手一些代码。

4

1 回答 1

6

它设置最后修改时间,因为这是您要求它执行的操作。该函数接收 3 个文件时间参数,而您只将一个值传递给最后一个,lpLastWriteTime. 要设置创建时间,请像这样调用函数:

SetFileTime(filename, &thefiletime, (LPFILETIME) NULL,(LPFILETIME) NULL);

我建议您阅读SetFileTime. 关键部分是它的签名,如下所示:

BOOL WINAPI SetFileTime(
  __in      HANDLE hFile,
  __in_opt  const FILETIME *lpCreationTime,
  __in_opt  const FILETIME *lpLastAccessTime,
  __in_opt  const FILETIME *lpLastWriteTime
);

既然你说你是 Windows API 的新手,我会给你一个提示。MSDN 上的文档非常全面。每当您遇到 Win32 API 调用时,请在 MSDN 上查找。

以及对您的代码的一些评论:

  • 您应该始终检查任何 API 调用的返回值。如果你错误地调用了这些函数,或者它们由于其他原因而失败,你会发现如果没有错误检查就不可能找出问题所在。
  • 您调用的变量filename实际上应该命名为fileHandle
于 2012-04-06T09:36:23.167 回答