src = "S:\src\1.jpg" dest = "S:\dest\1.jpg" //srcの村債確認 If System.IO.File.Exists(src) = False Then MsgBox(src & " が存在しません。") Exit Sub End If //コピー System.IO.File.Copy(src, dest, True)
//ファイルパスからディレクトリを取得 src2 = System.IO.Path.GetDirectoryName(src) dest2 = System.IO.Path.GetDirectoryName(dest) //コピー My.Computer.FileSystem.CopyDirectory(src2 , dest2, FileIO.UIOption.OnlyErrorDialogs, FileIO.UICancelOption.DoNothing)