I have a file with the following uri http://10.20.80.001/mobilepayment/hi.cer
published in iis . Is there any way to get the date created of this file in vb??
I want something like this
Dim fullpath = http://10.20.80.001/mobilepayment/hi.cer
Dim infoReader As System.IO.FileInfo
infoReader = My.Computer.FileSystem.GetFileInfo(fullpath)
Dim Filetimestamp As String = infoReader.LastWriteTime.ToString("yyMMddHHmmss")
thanks!