problemas para busqueda de archivos

oitl721002

New Member
Joined
May 27, 2005
Messages
8
tengo una aplicacion que busca un archivo.pdf en un directorio dado,
pero en este directorio tengo 1 archivos pdf (26.pdf) cun ago la busqueda de otro archivo llamado 6.pdf me dice que si lo encuentra pero en realidad esta tomado el nombre del 26. pdf por el "6" como puedo hacer la busqueda de solo ese archivo 6.pdf?

anexo mi codigo:

With Application.FileSearch
.LookIn = "G:\import-export\fotos\airtex"
.Filename = "6.PDF"
If .Execute(msoSortByFileName) > 0 Then
CER1.Visible = True
PDF1 = .Filename
Else
CER1.Visible = False
End If
End With
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Creo que es más seguro usar Dir$() en este caso, ya que, primero, no se necesita revisar subdirectorios, segundo, se tiene el nombre exacto del archivo, y tercero, solo se necesita ver si el archivo existe o no.


Code:
If Len(Dir$("G:\import-export\fotos\airtex\6.pdf")) > 0 Then
   'Si existe
     CER1.Visible = True 
Else
     CER1.Visible = False
End If
 
Upvote 0

Forum statistics

Threads
1,223,952
Messages
6,175,589
Members
452,653
Latest member
craigje92

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top