Delphi-PRAXiS
Seite 6 von 7   « Erste     456 7      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Software-Projekte der Mitglieder (https://www.delphipraxis.net/26-software-projekte-der-mitglieder/)
-   -   Phantom Zip v2.0 (https://www.delphipraxis.net/153183-phantom-zip-v2-0-a.html)

cookie22 26. Jul 2010 17:49

AW: Phantom Zip v2.0
 
lies dir mal genau das readme durch, du brauchst noch ne reihe andere dateien.

-Phantom- 26. Jul 2010 18:01

AW: Phantom Zip v2.0
 
Diese ganzen Sachen?
Delphi-Quellcode:
Delphi Zip 1.70Beta (http://www.users.bigpond.com/russellpeters/delphizip.html)
Cmarc (http://www.ceres.dti.ne.jp/~norg1964/cmarc/cmarc.html)
 *Modification is required for 7z support.
RtdunAce, RtdunRar3, RtdunRar (http://members.home.nl/rtimmermans/)
ActiveAce (http://www.winace.com/ftp/dev/activeace.exe)
SQX Archiver (http://www.sqx-archiver.org/)

cookie22 26. Jul 2010 18:27

AW: Phantom Zip v2.0
 
ja genau. :)

-Phantom- 26. Jul 2010 21:49

AW: Phantom Zip v2.0
 
Nur schade das die Links nicht alle gehen ^^

cookie22 26. Jul 2010 22:26

AW: Phantom Zip v2.0
 
schmeiss ma google an, da findest du alles mit nem bischen suchen. ;)

-Phantom- 27. Jul 2010 00:24

AW: Phantom Zip v2.0
 
hab ich schon gemacht hab auch versucht die Delphi zip 1.6 runterzuladen aber immer kommt da der Seiten fehler :?:

Ich glaube ich werde einfach erst mal damit leben müssen nur .zip Dateien erstellen zu können

-Phantom- 28. Jul 2010 04:29

AW: Phantom Zip v2.0
 
Ich wollte nun mal gucken was ich so nun alles entpacken kann.
Ich konnte:
.rar, .zip, .7z, .jar, .cab, .lzh, .tgz. ( Bestimmt noch mehr konnte aber kann halt nicht jedes Archiv erstellen ). Aber mir ist aufgefallen das ich .tar nicht entpacken kann. Immer wenn ich das versuche kommt "Unzulässige Funktion", obwohl das Format in der sevenzip.pas drin ist.
Delphi-Quellcode:
 CLSID_CFormatTar     : TGUID = '{23170F69-40C1-278A-1000-000110EE0000}'; // tar
Hier mein Versuch:
Delphi-Quellcode:
 with CreateInArchive(CLSID_CFormatBZ2) do
 begin
   OpenFile('C:\Users\Administrator\Desktop\asdf.tar');
   ExtractTo('C:\Users\Administrator\Desktop\hallo');
end;

mkinzler 28. Jul 2010 05:25

AW: Phantom Zip v2.0
 
Handelt es ich um ein Tar oder Tar.bz2?

cookie22 28. Jul 2010 06:04

AW: Phantom Zip v2.0
 
Zitat:

Zitat von -Phantom- (Beitrag 1037991)
Ich wollte nun mal gucken was ich so nun alles entpacken kann.
Ich konnte:
.rar, .zip, .7z, .jar, .cab, .lzh, .tgz. ( Bestimmt noch mehr konnte aber kann halt nicht jedes Archiv erstellen ). Aber mir ist aufgefallen das ich .tar nicht entpacken kann. Immer wenn ich das versuche kommt "Unzulässige Funktion", obwohl das Format in der sevenzip.pas drin ist.
Delphi-Quellcode:
 CLSID_CFormatTar     : TGUID = '{23170F69-40C1-278A-1000-000110EE0000}'; // tar
Hier mein Versuch:
Delphi-Quellcode:
 with CreateInArchive(CLSID_CFormatBZ2) do
 begin
   OpenFile('C:\Users\Administrator\Desktop\asdf.tar');
   ExtractTo('C:\Users\Administrator\Desktop\hallo');
end;

wenn tgz geht sollte tar auch gehen weil es ja in tgz enthalten ist. jar ist übrigens nichts anderes als zip mit einer anderen endung. genau wie lzh = lha ist. also die sollest du entpacken können.

wenn du tar entpacken möchtest solltest du nicht bzip2 als archive typ angeben.

-Phantom- 28. Jul 2010 06:24

AW: Phantom Zip v2.0
 
Delphi-Quellcode:
with CreateInArchive(CLSID_CFormatTar) do
 begin
   OpenFile('C:\Users\Administrator\Desktop\abc.tar');
   ExtractTo('C:\Users\Administrator\Desktop\abcd');
end;
Geht auch nicht


Alle Zeitangaben in WEZ +1. Es ist jetzt 06:45 Uhr.
Seite 6 von 7   « Erste     456 7      

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz