获取在线托管pdf文档修改日期vba excel

时间:2017-05-02 05:31:18

标签: excel vba excel-vba pdf modified-date

我对VBA有点新,并且已经做了几个小时的研究,看看是否有可能获得在线托管的PDF文档的创建日期或上次修改日期。

从一个帖子我发现FileDateTime函数可能有效,但是没有关于如何使用它的信息。

我已经从msdn网站找到并修改了代码,但它返回以下错误“无效的过程调用或参数”。

以下链接也很有帮助。声明使用没有“https:”的链接,但它似乎只适用于Sharepoint文件并返回错误(“找不到文件”)

How will I get the last modified date of a file in a SharePoint using VBA?

Sub return_created_date()

Dim MyStamp
' Assume TESTFILE was last modified on February 12, 1993 at 4:35:47 PM.
' Assume English/U.S. locale settings.
MyStamp = FileDateTime("https://www.xxxx.com/xxxx.pdf")    ' Returns "2/12/93 4:35:47 PM"

MsgBox (MyStamp)

End Sub

如果有可能的任何帮助将不胜感激

0 个答案:

没有答案