如何获取文件的文件创建日期?

时间:2012-01-05 05:58:24

标签: file axapta dynamics-ax-2009 x++

如何使用X ++在Microsoft Dynamics AX 2009中获取PDF文件的创建日期?

如何在按钮单击中打开该PDF文件?

1 个答案:

答案 0 :(得分:7)

没有功能构建,但你可以问Windows。

WinAPi getFileTime函数返回filetime结构。但是参数和返回值都有点难以接口(查看AX WinAPI类中的其他函数)。

.Net getCreationTime方法的接口(在WinAPI中定义)要容易得多:

client static UTCDateTime getFileCreationTime(str name)
{
    return CLRSystemDateTime2UtcDateTime(System.IO.File::GetCreationTime(name));
}

用作:

static void Job1(Args _args)
{;
    info(strFmt("%1", WinAPi::getFileCreationTime(@"C:\Users\zjbk\My Documents\ActionTool_SysFlushDictionaryServer.xpo")));
}

使用默认查看器打开PDF或任何文件:

WinAPI::ShellExecute(@"C:\test.pdf");