标题: move a file from one folder to another [打印本页] 作者: ak 时间: 2006-3-24 01:06 标题: move a file from one folder to another How to move a file from one folder to another?
Thanks!作者: 海龙 时间: 2006-3-24 09:39
Dim fso
Set fso=CreateObject("Scripting.FileSystemObject")
fso.MoveFile "c:\test.xls","d:\test.xls"
Set fso=Nothing作者: Horus_Ra 时间: 2006-3-24 17:16
唉,帮助里面写得那么清楚居然也不会……作者: ak 时间: 2006-3-25 00:08
Got it. Thanks!