本文介绍了帮助替换远程计算机上的文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须替换而不是删除远程计算机上的文件.我只需要覆盖文件.我有这段代码可以很好地复制,但是我不知道我需要添加什么,因此它将替换那里的内容并继续.
i have to replace a file thats on a remote machine without deleting it. I just need to overwrite the file. I have this code that copies just fine but i dont know what i need to add so it will replace what was there and continue.
Dim FileToCopy As String = "\\" & strComputer & "\C$\Progra~2\Hewlett-Packard\HPCA\Agent\Lib\SYSTEM\RADIA\SOFTSRVC\ASERVICE.EDM"
File.Copy("C:\Temp\ASERVICE.EDM", FileToCopy)
推荐答案
这篇关于帮助替换远程计算机上的文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!