Hi all, I'm sdudying for the Microsoft Exam 70-536 and I'm working through some examples in the self paced book.
In looking at the following code example and trying to figure out the GZipStream class I do not see where the data.zip file is being saved. Is there some default path this goes?
Code:
Dim gzOut As GZipStream = New GZipStream(File.Create("data.zip"), CompressionMode.Compress)
Dim sw As StreamWriter = New StreamWriter(gzOut)
For i As Integer = 1 To 999
sw.Write("Hello World!")
Next
sw.Close()
gzOut.Close()
Thanks,
Strick