Is there a way to retrieve the date a file was last saved from an internet address??
I tried using the FileDateTime function, which works fine for files that reside on my local drive or for files on any of our servers, but, it returns an error (Path not found) when I try to use an internet address:
ActiveCell.Value = FileDateTime("http://server:8800/HTML/REPORTS/AR/appliedreceipts.xls")
I can use this same address to open the file in Excel (ver 2000). Once the file is opened I can return the path (ActiveWorkbook.Path) and file name (ActiveWorkbook.Name) but, even if I use these two functions to enter the path & file name:
ActiveCell.Value = FileDateTime(ActiveWorkbook.Path & "/" & ActiveWorkbook.Name)
I get the same error.
Am I missing something or does this function not work over the internet. If the latter is true, is there another way to get the file date??
Thanks
I tried using the FileDateTime function, which works fine for files that reside on my local drive or for files on any of our servers, but, it returns an error (Path not found) when I try to use an internet address:
ActiveCell.Value = FileDateTime("http://server:8800/HTML/REPORTS/AR/appliedreceipts.xls")
I can use this same address to open the file in Excel (ver 2000). Once the file is opened I can return the path (ActiveWorkbook.Path) and file name (ActiveWorkbook.Name) but, even if I use these two functions to enter the path & file name:
ActiveCell.Value = FileDateTime(ActiveWorkbook.Path & "/" & ActiveWorkbook.Name)
I get the same error.
Am I missing something or does this function not work over the internet. If the latter is true, is there another way to get the file date??
Thanks