Results 1 to 4 of 4

Help importing files of specific types

Threaded View

  1. #1
    Valued Forum Contributor
    Join Date
    11-16-2004
    Location
    Devon UK
    MS-Off Ver
    2010
    Posts
    357

    Help importing files of specific types

    I have the code below which imports all filetype .MOV files into the sheet. I would like to extend this to include other filetypes from a list of filetypes this could be any number from 2 upwards, presumably I would also have to cover the fact that some might be upper case and some lower

    The only way I know how to do it would be to count the number of lines in the list then make the variable 'suffix' equal each one in turn in both upper and lower case then run through the code below for each one. No doubt this would work but it seems an inefficient way of doing it.

    Can you suggest a better way?

    suffix = ".MOV"
    col = 25
    rw = 3
       strFile = Dir(strpath)
        Do While Len(strFile) > 0
            
             If Right(strFile, 4) = suffix Then
                Cells(rw, col) = strFile
        
            Else
               rw = rw - 1
            
            End If
                    
            rw = rw + 1
            strFile = Dir
        Loop
    Last edited by tryer; 11-20-2012 at 04:21 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1