Option Explicit
'操作说明
'第一步,指定同步的源文件夹
'第二步,指定一个用于映射网络驱动器的盘符
'第三步,指定本地目标文件夹
'第四步,确认开始操作
Dim objNetwork, strDrive, objShell, objUNC, Fs
Dim strRemotePath, strDriveLetter, strNewName
'
strRemotePath = InputBox("请输入远程源文件夹的路径:", "文件同步工具", "\\tp022\help")
strDriveLetter = InputBox("把"&strRemotePath&"映射为本地的驱动器名:", "文件同步工具", "W:")
strNewName = "网络硬盘"
Set Fs=WScript.CreateObject("Scripting.FileSystemObject")
Set objNetwork = WScript.CreateObject("WScript.Network")
if not Fs.DriveExists(left(strDriveLetter,1)) then
' Section to map the network drive
objNetwork.MapNetworkDrive strDriveLetter, strRemotePath
' Section which actually (re)names the Mapped Drive
Set objShell = WScript.CreateObject("Shell.Application")
objShell.NameSpace(strDriveLetter).Self.Name = strNewName
end if
On Error Resume Next
Dim DirTotal, TimeSpend, FileTotal, fso, curPath, sPath, objFolder, objFolderItem, strPath
Const MY_COMPUTER = &H11&
Const WINDOW_HANDLE = 0
Const OPTIONS = 0
Set objShell = WScript.CreateObject("Shell.Application")
Set objFolder = objShell.Namespace(MY_COMPUTER)
Set objFolderItem = objFolder.Self
strPath = objFolderItem.Path
Set objFolder = objShell.BrowseForFolder(WINDOW_HANDLE, "指定本地同步文件夹:", OPTIONS, strPath)
If objFolder Is Nothing Then
MsgBox "您没有选择任何有效目录!"
WScript.Quit
Else
Set objFolderItem = objFolder.Self
sPath = objFolderItem.Path
curPath = sPath
FileTotal = 0
DirTotal = 0
if MsgBox ("确认现在开始同步吗?本地目录:" & curPath & " 远程目录: " & strRemotePath, 4, "文件同步工具") = 7 THEN
Set fso = Nothing
WScript.Quit
end if
TimeSpend = Timer
myFind strDriveLetter,curPath
Set fso = Nothing
objNetwork.RemoveNetWorkDrive strDriveLetter,true,true
TimeSpend = Round(Timer - TimeSpend, 2)
MsgBox "处理完成!共耗费时间:" & TimeSpend & " 处理文件数: " & FileTotal
WScript.Quit
End If
Sub myFind(ByVal thePath, ByVal trgPath)
Dim fso, trg, myFolder, myFile, trgFile, curFolder, trgFolder, curFolders
Set fso = WScript.CreateObject("Scripting.FileSystemObject")
Set trg = WScript.CreateObject("Scripting.FileSystemObject")
Set curFolders = fso.getfolder(thePath)
set trgFolder =trg.getfolder(trgPath)
DirTotal = DirTotal + 1
If curFolders.Files.Count > 0 Then
For Each myFile In curFolders.Files
if not trg.FileExists(myFile.Name) then
myFile.Copy FormatPath(trgPath) & "\" & myFile.Name
else
trgFile=trg.GetFile(myFile.Name)
if ((myFile.Size<>trgFile.Size) OR (myFile.DateCreated<>trgFile.DateCreated) OR (myFile.DateLastModified<>trgFile.DateLastModified)) THEN
myFile.copy FormatPath(trgPath) & "\" & myFile.Name, true
end if
end if
FileTotal = FileTotal + 1
Next
End If
If curFolders.subfolders.Count > 0 Then
For Each myFolder In curFolders.subfolders
if not trg.FolderExists(FormatPath(trgPath) & "\" & myFolder.Name) THEN
trg.CreateFolder FormatPath(trgPath) & "\" & myFolder.Name
end if
myFind FormatPath(thePath) & "\" & myFolder.Name, FormatPath(trgPath) & "\" & myFolder.Name
Next
End If
End Sub
Function FormatPath(ByVal thePath)
thePath = Trim(thePath)
FormatPath = thePath
If Right(thePath, 1) = "\" Then FormatPath = Mid(thePath, 1, Len(thePath) - 1)
End Function
将以上代码另存为文件名为:syncfiles.vbs 就可以运行使用了
分享到:
相关推荐
python学习资源
jfinal-undertow 用于开发、部署由 jfinal 开发的 web 项目
基于Andorid的音乐播放器项目设计(国外开源)实现源码,主要针对计算机相关专业的正在做毕设的学生和需要项目实战练习的学习者,也可作为课程设计、期末大作业。
python学习资源
python学习资源
python学习一些项目和资源
【毕业设计】java-springboot+vue家具销售平台实现源码(完整前后端+mysql+说明文档+LunW).zip
HTML+CSS+JavaScarip开发的前端网页源代码
python学习资源
【毕业设计】java-springboot-vue健身房信息管理系统源码(完整前后端+mysql+说明文档+LunW).zip
成绩管理系统C/Go。大学生期末小作业,指针实现,C语言版本(ANSI C)和Go语言版本
1_基于大数据的智能菜品个性化推荐与点餐系统的设计与实现.docx
【毕业设计】java-springboot-vue交流互动平台实现源码(完整前后端+mysql+说明文档+LunW).zip
内容概要:本文主要探讨了在高并发情况下如何设计并优化火车票秒杀系统,确保系统的高性能与稳定性。通过对比分析三种库存管理模式(下单减库存、支付减库存、预扣库存),强调了预扣库存结合本地缓存及远程Redis统一库存的优势,同时介绍了如何利用Nginx的加权轮询策略、MQ消息队列异步处理等方式降低系统压力,保障交易完整性和数据一致性,防止超卖现象。 适用人群:具有一定互联网应用开发经验的研发人员和技术管理人员。 使用场景及目标:适用于电商、票务等行业需要处理大量瞬时并发请求的业务场景。其目标在于通过合理的架构规划,实现在高峰期保持平台的稳定运行,保证用户体验的同时最大化销售额。 其他说明:文中提及的技术细节如Epoll I/O多路复用模型以及分布式系统中的容错措施等内容,对于深入理解大规模并发系统的构建有着重要指导意义。
基于 OpenCV 和 PyTorch 的深度车牌识别
【毕业设计-java】springboot-vue教学资料管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
此数据集包含有关出租车行程的详细信息,包括乘客人数、行程距离、付款类型、车费金额和行程时长。它可用于各种数据分析和机器学习应用程序,例如票价预测和乘车模式分析。
把代码放到Word中,通过开发工具——Visual Basic——插入模块,粘贴在里在,把在硅基流动中申请的API放到VBA代码中。在Word中,选择一个问题,运行这个DeepSeekV3的宏就可以实现在线问答
【毕业设计】java-springboot+vue机动车号牌管理系统实现源码(完整前后端+mysql+说明文档+LunW).zip
【毕业设计】java-springboot-vue交通管理在线服务系统的开发源码(完整前后端+mysql+说明文档+LunW).zip