首页 > 编程 > VBScript > 正文

vbs 复制指定文件到指定目录下

2020-07-26 11:20:04
字体:
来源:转载
供稿:网友

复制指定文件到指定目录下

核心代码

Set fso=CreateObject("Scripting.filesystemobject")Function CopyFileToPath()SrcPATH = createobject("Scripting.FileSystemObject").GetFile(Wscript.ScriptFullName).ParentFolder.PathDstPATH = "C:/Program Files/AEBELL_DebugTool/DebugTool/dll/FigClient/"fso.CopyFile SrcPATH&"/"&"FigClient.exe",DstPATH,TrueEnd Function' 'Call CopyFileToPath()

代码二

sourcefilepath="c:/names/names.nsf"desfilepath="d:/name_backup/Name"&""&Year(date)&-Month(date)&-Day(date)&" "&Hour(time)&-Minute(time)&"/"Set fso=CreateObject("Scripting.FileSystemObject")If Not fso.FolderExists(desfilepath) Thenfso.CreateFolder desfilepathfso.copyfile sourcefilepath,desfilepathEnd If

其实原理都是一样的。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表