Я хочу скопировать zip-файл из папки temp в просматриваемое местоположение (скажем Destinydirectory
).Скопируйте файл из папки temp в просматриваемое местоположение
Это мой код, однако он дает мне ошибку:
If System.IO.Directory.Exists(My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.Temp, "IXP001.TMP")) Then
System.IO.Directory.Delete(My.Computer.FileSystem.CombinePath(My.Computer.FileSystem.SpecialDirectories.Temp, "IXP000.TMP"), True)
FileCopy = "c:\\Users\\Test\\AppData\\Local\\Temp\\IXP001.TMP\\bin.zip"
Else
FileCopy = "c:\\Users\\Test\\AppData\\Local\\Temp\\IXP000.TMP\\bin.zip"
End If
File.Copy(FileCopy, Destinydirectory)
Если вы могли бы дать некоторые подробности о том, что вы пытались мы могли бы быть в состоянии помочь вам лучше. Вы видели: http://stackoverflow.com/help/mcve –
IfSystem.IO.Directory.Exists (My.Computer.FileSystem.CombinePath (My.Computer.FileSystem.SpecialDirectories.Temp, "IXP001.TMP")) Тогда System.IO.Directory.Delete (My.Computer.FileSystem.CombinePath (My.Computer.FileSystem.SpecialDirectories.Temp, "IXP000.TMP"), True) FileCopy = "c: \\ Users \\ Test \\ AppData \\ Local \\ Temp \\ IXP001.TMP \\ bin.zip " Else FileCopy =" c: \\ Users \\ Test \\ AppData \\ Local \\ Temp \\ IXP000.TMP \\ bin. zip " End IfFile.Copy (FileCopy, Destinydirectory) @Martin Brown –
Выбрасывает исключение? Если да, то можете ли вы дать нам точную формулировку сообщения об ошибке? Также что задано для Destinydirectory? –