modified date of the file

N

naveencn023

HI,

I have the folder( sub folders) keywords in column A and the folder paths in column B. I need to macro to search the folder with the keyword in the path and it should throws message "PASS" if folder exists or "FAIL" if folderdoesn't exists in column C. Also if folder exists, it should show last modified date in column D.

Please do the needful.

Thanks in advance for your help..
 
A

Auric__

naveencn023 said:
I have the folder( sub folders) keywords in column A and the folder
paths in column B. I need to macro to search the folder with the keyword
in the path and it should throws message "PASS" if folder exists or
"FAIL" if folder doesn't exists in column C. Also if folder exists, it
should show last modified date in column D.

Please do the needful.

Thanks in advance for your help..

Did you try to do it yourself? If so, post what you've already got, so we can
give you some pointers.

If not, I'll do it for you, US$1000, paid in advance, no refunds.
 
G

GS

naveencn023 said:
Did you try to do it yourself? If so, post what you've already got,
so we can give you some pointers.

If not, I'll do it for you, US$1000, paid in advance, no refunds.

<bg>!

--
Garry

Free usenet access at http://www.eternal-september.org
Classic VB Users Regroup!
comp.lang.basic.visual.misc
microsoft.public.vb.general.discussion
 
N

naveencn023

naveencn023 wrote:










Did you try to do it yourself? If so, post what you've already got, so we can

give you some pointers.



If not, I'll do it for you, US$1000, paid in advance, no refunds.

Hi,

I have the below mentioned code which will retrieve only file present/ not and i want to retrieve last modified date of the file too...


Sub IsItThere()
Dim KeyWd As String
Dim Pathh As String, fName As String
Dim N As Long, J As Long
N = Cells(Rows.Count, "A").End(xlUp).Row
For J = 1 To N
KeyWd = Cells(J, 1).Value
Pathh = Cells(J, 2).Value
If Right(Pathh, 1) = "\" Then
Pathh = Mid(Pathh, 1, Len(Pathh) - 1)
End If
Set objShell = CreateObject("Shell.Application")
Set objFolder = objShell.Namespace((Pathh))

For Each strFileName In objFolder.Items
fName = objFolder.GetDetailsOf(strFileName, 0)
If InStr(1, fName, KeyWd) > 0 Then
Cells(J, 3).Value = "File Present"
GoTo NextRecord
End If
Next
Cells(J, 3).Value = "File Not Present"
NextRecord:
Set objFolder = Nothing
Set objShell = Nothing
Next J
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top