| 
            
              FileCompressorCompress(String, String, CompressionStrength) Method
             | 
          
        
        
            Compress a file using specified compression strength (not PKZip compatible...)
            
        
        Namespace: GSF.IO.CompressionAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.257-beta+00aa2366fbb9ec75f636ebc7cfa610e3826a727c
Syntaxpublic static void Compress(
	string sourceFileName,
	string destinationFileName,
	CompressionStrength strength
)
Public Shared Sub Compress ( 
	sourceFileName As String,
	destinationFileName As String,
	strength As CompressionStrength
)
public:
static void Compress(
	String^ sourceFileName, 
	String^ destinationFileName, 
	CompressionStrength strength
)
static member Compress : 
        sourceFileName : string * 
        destinationFileName : string * 
        strength : CompressionStrength -> unit GSF.IO.Compression.FileCompressor.Compress = function(sourceFileName, destinationFileName, strength);
 View SourceParameters
- sourceFileName  String
 - Source file name.
 - destinationFileName  String
 - Destination file name.
 - strength  CompressionStrength
 - Stength of compression to apply.
 
See Also