+ Reply to Thread
Results 1 to 4 of 4

Move multiple files with wild card name

Hybrid View

randell.graybill Move multiple files with wild... 01-09-2010, 01:30 AM
randell.graybill Re: Move multiple files with... 01-09-2010, 01:35 AM
Leith Ross Re: Move multiple files with... 01-10-2010, 03:47 AM
randell.graybill Re: Move multiple files with... 01-14-2010, 10:31 PM
  1. #1
    Forum Contributor
    Join Date
    04-03-2009
    Location
    USA, California
    MS-Off Ver
    Excel 2007
    Posts
    385

    Move multiple files with wild card name

    Hi all I was wondering if anyone knew how to move multiple files from one directory to another? The thing is the file name will always have the word rotation in it but the other part will not be the same and I can't just copy all excel files because that won't work either as not all files in the directory should be copied only those with the name Rotation in them should be moved.

    Below is the code that I tried.

    Dim UserName As String
    UserName = Environ("USERNAME")
    
    Dim fso
    Dim sfol As String, dfol As String
    sfol = "C:\Documents and Settings\" & UserName & "\My Documents\Downloads" ' change to match the source folder path
    dfol = "U:\Rotations\" & SetDate ' change to match the destination folder path
    Set fso = CreateObject("Scripting.FileSystemObject")
    On Error Resume Next
    If Not fso.FolderExists(sfol) Then
        MsgBox sfol & " is not a valid folder/path.", vbInformation, "Invalid Source"
    ElseIf Not fso.FolderExists(dfol) Then
        MsgBox dfol & " is not a valid folder/path.", vbInformation, "Invalid Destination"
    Else
        fso.MoveFile (sfol & "\* Rotation.xls"), dfol ' Change "\*.*" to "\*.xls" to move Excel Files only
    End If
    If Err.number = 53 Then MsgBox "File not found"

  2. #2
    Forum Contributor
    Join Date
    04-03-2009
    Location
    USA, California
    MS-Off Ver
    Excel 2007
    Posts
    385

    Re: Move multiple files with wild card name

    I removed the on error resume next and it gives me the error message permission denied but I can't see why I am the owner of the folder, file and have full control over both.

  3. #3
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: Move multiple files with wild card name

    Hello Randell,

    The code you have is for VB.net. I rewrote the code for Excel 2003 using VBA.
    Sub MoveFiles()
    
      Dim dfoldername As String
      Dim fso As Object
      Dim fsoFile As Object
      Dim sFileName As String
      Dim sFilePath As String
      Dim UserName As String
      
        UserName = Environ("USERNAME")
    
        sFileName = "\* Rotation.xls"
        sFilePath = "C:\Documents and Settings\" & UserName & "\My Documents\Downloads" ' change to match the source folder path
        dfoldername = "U:\Rotations\" & SetDate ' change to match the destination folder path
        
        Set fso = CreateObject("Scripting.FileSystemObject")
        
          If Dir(sFilePath, vbDirectory) = "" Then
             MsgBox sFilePath & " is not a valid folder/path.", vbInformation, "Invalid Source"
             Exit Sub
          End If
          
          If Dir(dfoldername, vbDirectory) = "" Then
             MsgBox dfoldername & " is not a valid folder/path.", vbInformation, "Invalid Destination"
             Exit Sub
          End If
          
            sFileName = Dir(sFilePath & sFileName)
            If sFileName = "" Then
               MsgBox "No files were found."
               Exit Sub
            End If
            
            Do While sFileName <> ""
              Set fsoFile = fso.GetFile(sFileName)
              fsoFile.Move dfoldername
              sFileName = Dir()
            Loop
            
        Set fso = Nothing
        Set fsoFile = Nothing
       
    End Sub
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  4. #4
    Forum Contributor
    Join Date
    04-03-2009
    Location
    USA, California
    MS-Off Ver
    Excel 2007
    Posts
    385

    Re: Move multiple files with wild card name

    thanks Leith.

+ Reply to Thread

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