+ Reply to Thread
Results 1 to 3 of 3

Moving Specific Files

Hybrid View

  1. #1
    Registered User
    Join Date
    08-30-2012
    Location
    Darlington
    MS-Off Ver
    Excel 2010
    Posts
    1

    Moving Specific Files

    Hi Guys

    My script is
    ______________________________________________________________________________
    Sub MoveFiles()
    'This example move all Excel files from FromPath to ToPath.
        Dim FSO As Object
        Dim FromPath As String
        Dim ToPath As String
        Dim FileExt As String
        Dim FNames As String
    
     
     
        FromPath = "D:\Users\LF024\Documents\Files Moving" '<< Change
        ToPath = "D:\Users\LF024\Documents\Files Moved"   '<< Change only the destination folder
    
        FileExt = "*.csv*"  '<< Change
        'You can use *.* for all files or *.doc for word files
    
        If Right(FromPath, 1) <> "\" Then
            FromPath = FromPath & "\"
        End If
    
        FNames = Dir(FromPath & FileExt)
        If Len(FNames) = 0 Then
            MsgBox "No files in " & FromPath
            Exit Sub
        End If
    
        Set FSO = CreateObject("scripting.filesystemobject")
    
    
        FSO.MoveFile Source:=FromPath & FileExt, Destination:=ToPath
        MsgBox "You can find the files from " & FromPath & " in " & ToPath
    
    End Sub
    _____________
    __________________________________________________

    I want it to distingush between files by looking for 1s#3 in the filename

    files have very long names and vary by date and a possibility of 1s#1, 1s#2, 1s#3 and 1s#5.

    the script is to move them into their respective folders as they are all jumbled together.

    Many thanks in advance

    James

  2. #2
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Moving Specific Files

    Welcome to the forum.

    I have added code tags to your post. As per forum rule 3, you need to use them whenever you put any code in your post. Please add them in future. If you need more information on how to use them, check my signature.
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  3. #3
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Moving Specific Files

    So the macro above is not suited for moving multiple randomly named files from one known location to multiple other locations.

    What I would need to see is:

    1) Sample complete filenames
    2) The exact list of search strings and matching target destinations
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Tags for this Thread

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