我正在尝试从网络驱动器复制文件,然后移动到其他文件夹。不知何故,没有将文件移动到我指定的目录。执行读取文件代码后,文件将复制到同一目录中。(见图)
我在本地驱动器上尝试了相同的代码,但工作正常。
'copy the file
File.Copy(Path.Combine("\\swnas.swmed.org\Phytel\", Dts.Variables("File").Value.ToString), Path.Combine("\\swnas.swmed.org\Phytel\Raw\MCKPP\Processed", insertNewName), True)
'read the file
objStreamReader = New StreamReader(Path.Combine("\\swnas.swmed.org\Phytel\Raw\MCKPP\Processed", insertNewName))
'overwrite the file
objWriter = New StreamWriter(Dts.Variables("File").Value.ToString, False)
答案 0 :(得分:1)
我花一点时间确保没有奇怪的权限规则应用于您要复制/移动到的目录。