+ Reply to Thread
Results 1 to 14 of 14

Files move to a subfolder

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    12-19-2006
    Posts
    113

    Files move to a subfolder

    Hi,

    I want move all the xls files from a folder (C:\Test) to a subfolder (C:\Test\2009), but not move "ThisWorkbook".

    I try this
     Dim X
    Dim FromFder, ToFder, ToFder2
    Dim fso, GtName, fsofile, FileNw
    
    Set X = ThisWorkbook
    FromFder = X.Path
        GtName = InputBox("Pl Enter Subfolder Name", " Prog", Year(Now()) - 1)
    ToFder = FromFder & "\" & GtName
        MkDir ToFder
    ToFder2 = ToFder
    FileNw = "\*.xls"
    Set fso = CreateObject("Scripting.FileSystemObject")
            FileNw = Dir(FromFder & FileNw)
    
        Do While FileNw <> "" And FileNw <> ThisWorkbook.Name
    Set fsofile = fso.GetFile(FileNw)
            fsofile.MoveFile FromFder, ToFder
        Loop
    but isnt working at all.

    Thanks in advance for any help
    Last edited by Jokacave; 04-22-2010 at 02:07 PM.

  2. #2
    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: Files move to a subfolder

    Hello Jokacave,

    Here is the amended macro. This is much easier to do with VBA than the FSO.
    Sub Macro1()
    
      Dim X As Workbook
      Dim FromFder, ToFder
      Dim GtName,  FileNw
    
        Set X = ThisWorkbook
        
        FromFder = X.Path & "\"
        GtName = InputBox("Pl Enter Subfolder Name", " Prog", Year(Now()) - 1)
        
        ToFder = FromFder & GtName & "\"
        MkDir ToFder
        
        FileNw = "*.xls"
        
          FileNw = Dir(FromFder & FileNw)
          
          Do While FileNw <> ""
            If FileNw <> X.Name Then
              Name FromFder & FileNw As ToFdr & FileNw
            End If
            FileNw = Dir
          Loop
            
    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!)

  3. #3
    Forum Contributor
    Join Date
    12-19-2006
    Posts
    113

    Re: Files move to a subfolder

    Hi Leith Ross,

    Thank you for trying to help me...
    I try ur code but don.t move any file to the subfolder.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Files move to a subfolder

    Try this:
    Sub MoveWorkbooks()
        Dim sDirTo      As String
        Dim sDirFr      As String
        Dim sMe         As String
        Dim sFile       As String
    
        With Application.FileDialog(msoFileDialogFolderPicker)
            .Title = "Select directory"
            .InitialFileName = ThisWorkbook.Path & "\"
            .AllowMultiSelect = False
            If .Show = 0 Then Exit Sub
            sDirTo = .SelectedItems(1) & "\"
        End With
    
        sDirFr = ThisWorkbook.Path & "\"
        sMe = ThisWorkbook.Name
        sFile = Dir(sDirFr & "*.xls")
    
        Do While Len(sFile)
            If sFile <> sMe Then Name sDirFr & sFile As sDirTo & sFile
            sFile = Dir()
        Loop
    End Sub
    Entia non sunt multiplicanda sine necessitate

  5. #5
    Forum Contributor
    Join Date
    12-19-2006
    Posts
    113

    Re: Files move to a subfolder

    I try ur code but move every file and I want move all the files but not the files where is the code. And i need create the subfolder before run the code but i think i can turn around that "problem".

  6. #6
    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: Files move to a subfolder

    Hello Jokacave,

    I ran the macro and it skips moving the workbook the macro is in. Did you want to do something different?

  7. #7
    Forum Contributor
    Join Date
    12-19-2006
    Posts
    113

    Re: Files move to a subfolder

    Hi shg,

    Thk u 4 ur help. Ur code have a few froblems 4 what I want - I posted at 01:44 AM.
    Thk u anyway

  8. #8
    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: Files move to a subfolder

    Hello Jokacave,

    Did it create the the new directory? Have you saved the workbook with the macro?

  9. #9
    Forum Contributor
    Join Date
    12-19-2006
    Posts
    113

    Re: Files move to a subfolder

    Yes, to both questions.

  10. #10
    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: Files move to a subfolder

    Hello Jokacave,

    The Name ... As statement should have moved the file to the new directory. What version of Excel are you using?

  11. #11
    Registered User
    Join Date
    04-06-2010
    Location
    Wellington, New Zealand
    MS-Off Ver
    Excel 2007
    Posts
    42

    Re: Files move to a subfolder

    Hi, theres a few problems you face with the existing code...

    1) the folder already exists when you try and make it
    2) user enters an invalid folder name
    3) code doesnt actually loop through files etc.

    Heres 2 pieces of code - insert both into the VBE and then run the MoveExcelFiles sub

    This function returns true if the folder name is acceptable to Windows or false if its not
    Function ValidFolderName(strFolderName As Variant) As Boolean
    Dim arrInvalidCharacters As Variant, arrItem As Variant
    'Code by Graham Paramore
    
        'Folder names must not include the following: # % & * : <  > ? / \ { | }
        arrInvalidCharacters = Array("#", "%", "&", "*", ":", "<", ">", "?", "/", "\", "{", "|", "}")
    
        'First check if there is a string value passed
        If strFolderName = "" Then
            ValidFolderName = False
            Exit Function
        End If
    
        'Check if any invalid characters are there
        For Each arrItem In arrInvalidCharacters
            If InStr(1, strFolderName, arrItem, vbTextCompare) > 0 Then
                ValidFolderName = False
                Exit Function
            End If
        Next arrItem
    
        'Assign true indicating folder name should be OK
        ValidFolderName = True
    End Function
    This code copies over Excel files to your new subfolder
    Sub MoveExcelFiles()
    Dim objFileSystem As Object, obgFileList As Object, objFile As Object, GtName As Variant, ToFolder As String
    Dim objSourceFolder As Object, strSourceFolder As String, strNewFilePath As String, strRawFileName As String
    'Code by Graham Paramore
    
        'If theres an error then skip to the bottom and advise the error
        On Error GoTo ErrHandler
    
        'Assign a variable for the folder containing this workbook
        strSourceFolder = ThisWorkbook.Path
    
        'Ask user for folder name
        GtName = InputBox("Please Enter Subfolder Name", " Prog", Year(Now()) - 1)
        
        'Check user didn't click Cancel
        If GtName = "" Then
            MsgBox "You have not entered a folder name!", vbCritical, "Invalid FolderName"
            Exit Sub
        End If
        
        'Check folder name is valid.
        If ValidFolderName(GtName) = False Then
            MsgBox "You have not entered a valid folder name. A folder may not contain any of the following characters:" & _
                vbLf & "# % & * : <  > ? / \ { | }", vbCritical, "Invalid FolderName"
            Exit Sub
        End If
        
        'If folder doesn't already exist then create the folder
        ToFolder = ThisWorkbook.Path & "\" & GtName
        If Len(Dir(ToFolder, vbDirectory)) > 0 Then
            'Do nothing, folder is already there
        Else
            MkDir ToFolder
        End If
        
        'Create a FileSystemObject to work with the files
        Set objFileSystem = CreateObject("Scripting.FileSystemObject")
        
        'Get a list of the filenames located in the same folder as this workbook
        Set objSourceFolder = objFileSystem.GetFolder(strSourceFolder)
        Set obgFileList = objSourceFolder.Files
        
        'Move each file to the new subfolder, but don't move this workbook.
        For Each objFile In obgFileList
                'This is the new path for the file
                strNewFilePath = ToFolder & "\" & objFile.Name
    
                'This is the file name without the path
                strRawFileName = objFile.Name
    
                'Only move xls files
                If Right(strRawFileName, 4) = ".xls" Or Right(strRawFileName, 5) = ".xlsx" Or Right(strRawFileName, 5) = ".xlsm" Then
                    'Move over valid Excel files
                    If Left(strRawFileName, 1) = "~" Or objFile.Path = ThisWorkbook.FullName Then
                        'Don't move this workbook or temp files.
                    Else
                        'The file is ok so move it
                        objFileSystem.MoveFile objFile.Path, strNewFilePath
                    End If
                End If
        Next objFile
    
        'Tidy up. Remove objects from memory
        Set objFileSystem = Nothing
        Set obgFileList = Nothing
        Set objFile = Nothing
        Set objSourceFolder = Nothing
        
        'Advise user that the files have been moved over
        MsgBox "The Excel files in the folder " & strSourceFolder & " have been successfully moved to the folder " & _
            ToFolder, vbInformation, "Move Files Was Successful"
        
        'Exit the sub so the error message doesn't display
        Exit Sub
        
    ErrHandler:
        MsgBox "The following error occurred with the MoveExcelFiles Procedure:-" & _
            vbLf & vbLf & "Error#: " & vbLf & Err.Number & vbLf & "Description: " & _
            Err.Description, vbCritical, "Error in MoveExcelFiles Procedure", _
            Err.HelpFile, Err.HelpContext
        
    End Sub
    regards,
    Graham

+ 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