how can i read a compressed file from c# in R?

   String fileName = "myFile.gff";
        using (FileStream zipToOpen = new FileStream(fileName, FileMode.Create))
        {
            using (ZipArchive archive = new ZipArchive(zipToOpen, ZipArchiveMode.Create))
            {
                ZipArchiveEntry write_entry = archive.CreateEntry(fileName);
                using (BinaryWriter writer = new BinaryWriter(write_entry.Open()))
                {
                    writer.Write((Int32)1);
                    writer.Write((Int32)2);
                    writer.Write((Int32)3);
                    writer.Write((Int32)4);
                }
            }
        }

I have created the file myFile in c#, but i want to read it in R. How can i do that?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.