如何获取文件的文件创建日期?
如何使用 X++ 在 Microsoft Dynamics AX 2009 中获取 PDF 文件的创建日期?
以及如何通过单击按钮打开该 PDF 文件?
How to get the creation date of a PDF file in Microsoft Dynamics AX 2009 with X++?
And how to open that PDF file in the button click?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有内置函数可以做到这一点,但你可以询问 Windows。
WinAPi getFileTime函数返回一个文件时间结构。然而,参数和返回值都有点难以连接(查看 AX WinAPI 类中的其他函数)。
.Net getCreationTime 方法(必须在 WinAPI 中定义):
使用方式如下:
使用默认查看器打开 PDF 或任何文件:
There is no build in function to do that, but you could ask Windows.
The WinAPi getFileTime function returns a filetime structure. However both the parameters and the return value is a little difficult to interface to (look at other function in the AX WinAPI class).
Much easier is the interface to the .Net getCreationTime method (do be defined in WinAPI):
To be used like:
To open a PDF or whatever file using the default viewer: