Results 1 to 14 of 14

Files move to a subfolder

Threaded 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.

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