What I want to do is create a zip folder by right-clicking in windows explorer, and new -> Compressed (zip) folder.
Then I want to use something like My.Computer.Filesystem.MoveFile("C:\From.jpg", "C:\ZipFolder.zip\To.jpg", true)
But I get an error "file or directory with the same name already exists".
Is there an easy way to do this? I thought windows supported zip folders but it seems to have no idea that I'm trying to move the file to a zip folder, rather, it is seeing the zip as a file and thinks I'm overwriting it or something.