I´m using this comand:
cd / "C:\\Program Files (x86)\\WinRAR\\Rar.exe" x-y "@Value(_response_file_path)"
The file is downloaded correctly but the unzip process don´t work properly.
Thank´s
I´m using this comand:
cd / "C:\\Program Files (x86)\\WinRAR\\Rar.exe" x-y "@Value(_response_file_path)"
The file is downloaded correctly but the unzip process don´t work properly.
Thank´s
Hi @mr_fme
I think you can use the custom transformer ZipExtractor after the HttpCaller.
Thanks,
Danilo
Hi @mr_fme
I think you can use the custom transformer ZipExtractor after the HttpCaller.
Thanks,
Danilo
The SystemCaller would be the transformer to use for that.
The SystemCaller would be the transformer to use for that.
I'd try it without the cd /, I think the SystemCaller tries to execute the whole thing as a single command.
I'd try it without the cd /, I think the SystemCaller tries to execute the whole thing as a single command.
cd C:\\Program Files (x86)\\WinRAR\\winrar x C:\\Users\\FME\\Desktop\\test_file.zip c:\\test
cd C:\Program Files (x86)\WinRAR\winrar x C:\Users\FME\Desktop\test_file.zip c:\test
"C:\Program Files (x86)\WinRAR\winrar" x C:\Users\FME\Desktop\test_file.zip c:\test
Also, when you execute the command line via the SystemCaller, you will have to quote the entire command line if a file path within it contains spaces.""C:\Program Files (x86)\WinRAR\winrar" x C:\Users\FME\Desktop\test_file.zip c:\test"
"C:\Program Files (x86)\WinRAR\winrar" x C:\Users\FME\Desktop\test_file.zip c:\test
Also, when you execute the command line via the SystemCaller, you will have to quote the entire command line if a file path within it contains spaces.""C:\Program Files (x86)\WinRAR\winrar" x C:\Users\FME\Desktop\test_file.zip c:\test"
Thank´s, work properly now!! I was missing something very silly for what I saw.