Results 1 to 12 of 12

Thread: Sleeper: Is there a faster method to find extended file properties

Threaded View

Previous Post Previous Post   Next Post Next Post
  1. #6
    snb
    Guest
    Sub M_snb()
        For Each fl In CreateObject("shell.application").Namespace("G:\OF").Items
            c02 = ""
            With fl.Parent
                For j = 0 To 14
                    c02 = c02 & vbLf & j & vbTab & .GetDetailsOf(.Items, j) & ": " & .GetDetailsOf(fl, j)
                Next
            End With
            MsgBox c02
        Next
    End Sub
    @PH

    Internationally more robust:

        MsgBox CreateObject("wscript.shell").specialfolders(10)
    Last edited by snb; 10-22-2021 at 01:21 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •