Getting list of Files from Search-ms folder

imranbhatti

New Member
Joined
Dec 1, 2015
Messages
5
Hi,


I am struggling to get list of files and its properties from "Search-ms" folder. It seems VBA is not accepting this type of file as a folder. I am using the bellow code


Code:
Sub Example4()
    Dim objFSO As Object
    Dim objFolder As Object
    Dim objFile As Object
    Dim ws As Worksheet
    
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set ws = Worksheets.Add
    
    'Get the folder object associated with the directory
    Set objFolder = objFSO.GetFolder("C:\Users\" & Environ$("UserName") & "\Dropbox\ImranBhatti\mySearch\")
    
    'Loop through the Files collection
    For Each objFile In objFolder.Files
      s = s & vbNewLine & objFile.Name
    Next
    MsgBox s
    'Clean up!
    Set objFolder = Nothing
    Set objFile = Nothing
    Set objFSO = Nothing
End Sub




I also tried
"C:\Users" & Environ$("UserName") & "\Dropbox\ImranBhatti\mySearch"


"C:\Users" & Environ$("UserName") & "\Dropbox\ImranBhatti\mySearch.Search-ms"




When I double click on the file it opens and shows the search results, means no issues with the save search file.


Previously posted at:https://www.excelforum.com/excel-pr...-files-from-search-ms-folder.html#post4972113
Any help would be greatly appreciated.




Best Regards
Imran Bhatti
 
Last edited:

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.

Forum statistics

Threads
1,214,636
Messages
6,120,666
Members
448,977
Latest member
moonlight6

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