U++ framework
Do not panic. Ask here before giving up.

Home » U++ Library support » U++ Library : Other (not classified elsewhere) » Is it possible to compress many files in one GZ file?
Is it possible to compress many files in one GZ file? [message #55668] Sun, 29 November 2020 10:16 Go to previous message
Patisab is currently offline  Patisab
Messages: 21
Registered: December 2015
Location: France
Promising Member
Hello,

When i try to compress many files in one GZ file, only the last one is in it. Well, i think that GZ file is always open for writing only, not for writing and appending.

Now, it's looking like that :

FindFile ffFic;
String lFic, lGz;
lFic = "FicLog.log.*";
lGz = "FicLog.gz";

if (ffFic.Search(lFic) && PromptYesNo("Delete log files?")){
	do {
		GZCompressFile(lGz.ToString(),ffFic.GetPath().ToString());
		FileDelete(ffFic.GetPath());
	} while (ffFic.Next());
}


I have three questions to submite to you :

- Do you see some problems with the code?
- Can it be possible to append files with the GZCompressFile function? If yes, how?

Thank you very much for your help.

Best regards.
 
Read Message
Read Message
Read Message
Read Message
Read Message
Previous Topic: SOLVED SetLabel issue
Next Topic: plugin/Eigen updated to stable release 3.3.9
Goto Forum:
  


Current Time: Sat May 02 13:21:28 GMT+2 2026

Total time taken to generate the page: 0.00573 seconds