c# output file (tar)

  • Thread starter Thread starter csharpula csharp
  • Start date Start date
C

csharpula csharp

Hello,
I have not a pure c# question so sorry for that but maybe someone can
help:

I create via c# a tar.gz archive and while trying to untar it in unix I
get a list of all the files and how many bytes they take (after doing
this: tar xvf test.tar) but I don't see the files ?

Why is that? Thank you
 
csharpula said:
I have not a pure c# question so sorry for that but maybe someone can
help:

I create via c# a tar.gz archive and while trying to untar it in unix I
get a list of all the files and how many bytes they take (after doing
this: tar xvf test.tar) but I don't see the files ?

Why is that?

If tar xvf show files then the files are there - check subdirs.

The command for just listing content is tar tvf.

Arne
 
Back
Top