有一个名为文件复制的函数
filecopy(source,destination)
是否可以通过ip从我的电脑复制到另一台电脑? 例如:
filecopy("C:\User\name\Desktop\test.txt",//192.168.x.x)
如果是,那么正确的语法是什么?
答案 0 :(得分:0)
您需要正确指定UNC路径,例如:
filecopy("C:\User\name\Desktop\test.txt","\\192.168.x.x\c$\User\name\Desktop")
使用File.IO.Copy代替旧的VB6语法也更好。