Set the ascii file translation flag. If ascii file translatio is true, then the MIME file type will be consulted to determine if the file is of type 'text/*'. If the MIME type is not found, then the TransFileTyper is consulted if it is not null. If either of these two checks indicates the file is an ascii text file, it will be translated. The translation converts the local operating system's concept of line ends into the UNIX line end, '\n', which is the defacto standard for a TAR archive. This makes text files compatible with UNIX, and since most tar implementations text files compatible with UNIX, and since most tar implementations
[Visual Basic]
Public Sub SetAsciiTranslation( _
   ByVal asciiTranslate As Boolean _
)
[C#]
public void SetAsciiTranslation(
   bool asciiTranslate
);
Parameters
asciiTranslate
If true, translate ascii text files.
See Also
TarArchive Class | TarArchive Members | ICSharpCode.SharpZipLib.Tar Namespace