Part Description
oldpathname Required. String expression that specifies the existing file name and location — may include directory or folder, and drive.
newpathname Required. String expression that specifies the new file name and location — may include directory or folder, and drive. The file name specified by newpathname can't already exist.
Remarks
The Name statement renames a file and moves it to a different directory or folder, if necessary. Name can move a file across drives, but it can only rename an existing directory or folder when both newpathname and oldpathname are located on the same drive. Name cannot create a new file, directory, or folder.
Using Name on an open file produces an error. You must close an open file before renaming it. Name arguments cannot include multiple-character (*) and single-character (?) wildcards.
Dim date1 As Variant
Dim fil
Dim fso
Dim fill2
Dim fso2
date1 = Format(Date, "MM-DD-YYYY"
Set fso = CreateObject("scripting.filesystemobject"
Set fso2 = CreateObject("scripting.filesystemobject"
Set fill = fso.getfile("H:\IV\IV2000.mdb"
Set fill2 = fso2.createfolder("c:\itbackup\itdb" & date1)
fill.Copy ("c:\itbackup\itdb" & date1 & "\"
jason2:
Exit Sub
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.