[VB.net] Decompression

    Publicités

Users Who Are Viewing This Thread (Total: 0, Members: 0, Guests: 0)

Status
Not open for further replies.

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
Salut a tous, en se moment (2 semaines), je cherche un code, une classe ou une dll permetant de decompresser un fichier zip, j'ai essayer avec le Gzip, mais sa ne fonctionne pas, se que je veux c'est que il liste les fichiers presants dans tableau et que il les récuperes dans l'archive, alors que avec le Gzip, il ne liste pas, il demande directement le nom du fichier, j'ai bien dit LE NOM, encore si il pouvais utilisait plusieur nom, mais la non :/, (je connais le nom des fichiers)


Voila merci, et si vous trouvez pour autre chose( jar, tar ...) je suis preneuse :)

++ et merci
 
Mar 30, 2011
1,014
1
944
In Your Ass
j ai tester ca
Code:
      Dim ArchiveZip As String = "No.zip"
        Dim TargetDir As String = My.Application.Info.DirectoryPath

        Using zip1 As ZipFile = ZipFile.Read(ArchiveZip)
            Dim i As ZipEntry


            For Each i In zip1

                If i.FileName.Equals("Ionic.Zip.dll33") Then


                    i.Extract(TargetDir, ExtractExistingFileAction.OverwriteSilently)
                End If

            Next
        End Using

ca extrait bien le fichier Ionic.Zip.dll33 provenant de l archive No.zip
 

Ben

Master Chief
V
Ancien staff
Mar 3, 2011
4,069
3
944
Un peut partout.
J'ai dev ça ce matin (compression .zip) pour la décompression je regarde ce soir ;)
Sub CompressFile()
Using ouvrir_fichier As New OpenFileDialog
ouvrir_fichier.Title = "Choisir un fichieer à compresser"
ouvrir_fichier.Filter = "Tous les fichiers (*.*) | *.*"
If ouvrir_fichier.ShowDialog = Windows.Forms.DialogResult.OK Then
Dim stream_fich As New FileStream(ouvrir_fichier.FileName, FileMode.Open, FileAccess.Read)
Dim buffer(stream_fich.Length) As Byte
stream_fich.Read(buffer, 0, buffer.Length)
stream_fich.Close()
Dim path As String = (ouvrir_fichier.FileName.Split("."c)(ouvrir_fichier.FileName.Split("."c).Length - 1))
path = Replace(ouvrir_fichier.FileName, path, "zip")
If IO.File.Exists(path) Then
MsgBox("Le fichier : " & vbCrLf & path & vbCrLf & "éxiste déjà !", MsgBoxStyle.Exclamation, "/!\")
Else
Dim compres_fich As FileStream = File.Create(path)
Dim zip_stream_fich As New GZipStream(compres_fich, CompressionMode.Compress)
zip_stream_fich.Write(buffer, 0, buffer.Length)
zip_stream_fich.Close()
End If
End If
End Using
End Sub
Si ça peut t'aider, il y a de quoi comprendre dans ce que je t'ai donné pour la décompression, éssaye de chercher par toi-même aux lieux de source codé par d'autres' (si tu n'est pas débutant)
 
Last edited:

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
J'ai essayer le code
Code:
 Dim ZipToUnpack As String = "C1P3SML.zip"  
   Dim TargetDir As String = "C1P3SML"  
   Console.WriteLine("Extracting file {0} to {1}", ZipToUnpack, TargetDir)   
   Using zip1 As [COLOR="Red"]ZipFile[/COLOR] = ZipFile.Read(ZipToUnpack)   
       AddHandler zip1.ExtractProgress, AddressOf MyExtractProgress   
       Dim e As ZipEntry   
       ' here, we extract every entry, but we could extract    
       ' based on entry name, size, date, etc.   
       For Each e In zip1   
           e.Extract(TargetDir, ExtractExistingFileAction.OverwriteSilently)   
       Next  
   End Using

Mais il me met une erreur au ZipFile , alors j'ai Importer Ionic, sans resultat, j'aimerais avoir de l'aide sur se sujet la, merci

EDIT--------------------------

Ok, super j'ai trouver une source dans les dll
Code:
Imports System
Imports System.IO
Imports Ionic.Zip
Imports System.ComponentModel

Public Class Form1

    Private _backgroundWorker1 As System.ComponentModel.BackgroundWorker
    Private _operationCanceled As Boolean
    Private nFilesCompleted As Integer
    Private totalEntriesToProcess As Integer
    Private _appCuKey As Microsoft.Win32.RegistryKey
    Private AppRegyPath As String = "Software\Ionic\VBunZip"
    Private rvn_ZipFile As String = "zipfile"
    Private rvn_ExtractDir As String = "extractdir"

    Private Delegate Sub ZipProgress(ByVal e As ExtractProgressEventArgs)

    Private Sub btnZipBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnZipBrowse.Click
        Dim openFileDialog1 As New OpenFileDialog
        If (String.IsNullOrEmpty(tbZipToOpen.Text)) Then
            openFileDialog1.InitialDirectory = "c:\"
        Else
            openFileDialog1.InitialDirectory = IIf(File.Exists(Me.tbZipToOpen.Text), Path.GetDirectoryName(Me.tbZipToOpen.Text), Me.tbZipToOpen.Text)
        End If
        openFileDialog1.Filter = "zip files|*.zip|EXE files|*.exe|All Files|*.*"
        openFileDialog1.FilterIndex = 1
        openFileDialog1.RestoreDirectory = True
        If (openFileDialog1.ShowDialog = DialogResult.OK) Then
            Me.tbZipToOpen.Text = openFileDialog1.FileName
            If File.Exists(Me.tbZipToOpen.Text) Then
                Me.btnUnzip_Click(sender, e)
            End If
        End If
    End Sub


    Private Sub btnUnzip_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnUnzip.Click
        If Not File.Exists(Me.tbZipToOpen.Text) Then
            MessageBox.Show("That file does not exist", "Cannot Unzip", MessageBoxButtons.OK)
        End If

        If Not String.IsNullOrEmpty(tbZipToOpen.Text) And _
        Not String.IsNullOrEmpty(tbExtractDir.Text) Then
            If Not Directory.Exists(tbExtractDir.Text) Then
                Directory.CreateDirectory(tbExtractDir.Text)
            End If
            nFilesCompleted = 0
            _operationCanceled = False
            btnCancel.Enabled = True
            btnUnzip.Enabled = False
            btnZipBrowse.Enabled = False
            btnExtractDirBrowse.Enabled = False
            tbZipToOpen.Enabled = False
            tbExtractDir.Enabled = False
            KickoffExtract()
        End If
    End Sub


    Private Sub KickoffExtract()
        lblStatus.Text = "Extracting..."
        Dim args(2) As String
        args(0) = tbZipToOpen.Text
        args(1) = tbExtractDir.Text
        _backgroundWorker1 = New System.ComponentModel.BackgroundWorker()
        _backgroundWorker1.WorkerSupportsCancellation = False
        _backgroundWorker1.WorkerReportsProgress = False
        AddHandler Me._backgroundWorker1.DoWork, New DoWorkEventHandler(AddressOf Me.UnzipFile)
        _backgroundWorker1.RunWorkerAsync(args)
    End Sub



    Private Sub btnExtractDirBrowse_Click(ByVal sender As Object, ByVal e As EventArgs) Handles btnExtractDirBrowse.Click
        Dim dlg As New FolderBrowserDialog
        dlg.Description = "Select a folder to zip up:"
        dlg.ShowNewFolderButton = False
        'dlg.ShowEditBox = True
        dlg.SelectedPath = Me.tbExtractDir.Text
        'dlg.ShowFullPathInEditBox = True
        If (dlg.ShowDialog = DialogResult.OK) Then
            tbExtractDir.Text = dlg.SelectedPath
        End If
    End Sub


    Private Sub UnzipFile(ByVal sender As Object, ByVal e As DoWorkEventArgs)
        Dim extractCancelled As Boolean = False
        Dim args() As String = e.Argument
        Dim zipToRead As String = args(0)
        Dim extractDir As String = args(1)
        Try
            Using zip As ZipFile = ZipFile.Read(zipToRead)
                totalEntriesToProcess = zip.Entries.Count
                SetProgressBarMax(zip.Entries.Count)
                AddHandler zip.ExtractProgress, New EventHandler(Of ExtractProgressEventArgs)(AddressOf Me.zip_ExtractProgress)
                zip.ExtractAll(extractDir, Ionic.Zip.ExtractExistingFileAction.OverwriteSilently)
            End Using
        Catch ex1 As Exception
            MessageBox.Show(String.Format("There's been a problem extracting that zip file.  {0}", ex1.Message), "Error Extracting", MessageBoxButtons.OK, MessageBoxIcon.Exclamation, MessageBoxDefaultButton.Button1)
        End Try
        ResetUI()
    End Sub


    Private Sub ResetUI()
        If btnCancel.InvokeRequired Then
            btnCancel.Invoke(New Action(AddressOf ResetUI), New Object() {})
        Else
            btnUnzip.Enabled = True
            btnZipBrowse.Enabled = True
            btnExtractDirBrowse.Enabled = True
            btnCancel.Enabled = False
            tbZipToOpen.Enabled = True
            tbExtractDir.Enabled = True
            ProgressBar1.Maximum = 1
            ProgressBar1.Value = 0
            Me.btnUnzip.Focus()
        End If
    End Sub

    Private Sub SetProgressBarMax(ByVal n As Integer)
        If ProgressBar1.InvokeRequired Then
            ProgressBar1.Invoke(New Action(Of Integer)(AddressOf SetProgressBarMax), New Object() {n})
        Else
            ProgressBar1.Value = 0
            ProgressBar1.Maximum = n
            ProgressBar1.Step = 1
        End If
    End Sub


    Private Sub zip_ExtractProgress(ByVal sender As Object, ByVal e As ExtractProgressEventArgs)
        If _operationCanceled Then
            e.Cancel = True
            Return
        End If

        If (e.EventType = Ionic.Zip.ZipProgressEventType.Extracting_AfterExtractEntry) Then
            StepEntryProgress(e)
        ElseIf (e.EventType = ZipProgressEventType.Extracting_BeforeExtractAll) Then
            '' do nothing
        End If
    End Sub


    Private Sub StepEntryProgress(ByVal e As ExtractProgressEventArgs)
        If ProgressBar1.InvokeRequired Then
            ProgressBar1.Invoke(New ZipProgress(AddressOf StepEntryProgress), New Object() {e})
        Else
            ProgressBar1.PerformStep()
            System.Threading.Thread.Sleep(100)
            'set a label with status information
            nFilesCompleted = nFilesCompleted + 1
            lblStatus.Text = String.Format("{0} of {1} files...({2})", nFilesCompleted, totalEntriesToProcess, e.CurrentEntry.FileName)
            Me.Update()
        End If
    End Sub



    'Private Sub StepArchiveProgress(ByVal e As ZipProgressEventArgs)
    '    If ProgressBar1.InvokeRequired Then
    '        ProgressBar1.Invoke(New ZipProgress(AddressOf StepArchiveProgress), New Object() {e})
    '    ElseIf Not _operationCanceled Then
    '        _nFilesCompleted = _nFilesCompleted + 1
    '        ProgressBar1.PerformStep()
    '        progressBar2.Value = progressBar2.Maximum = 1
    '        MyBase.Update()
    '    End If
    'End Sub

    Private Sub btnCancel_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCancel.Click
        _operationCanceled = True
        ProgressBar1.Maximum = 1
        ProgressBar1.Value = 0
        lblStatus.Text = "Cancelled..."
    End Sub


    Private Sub SaveFormToRegistry()
        If AppCuKey IsNot Nothing Then
            If Not String.IsNullOrEmpty(tbZipToOpen.Text) Then
                AppCuKey.SetValue(rvn_ZipFile, Me.tbZipToOpen.Text)
            End If
            If Not String.IsNullOrEmpty(tbExtractDir.Text) Then
                AppCuKey.SetValue(rvn_ExtractDir, tbExtractDir.Text)
            End If
        End If
    End Sub

    Private Sub LoadFormFromRegistry()
        If AppCuKey IsNot Nothing Then
            Dim s As String
            s = AppCuKey.GetValue(rvn_ZipFile)
            If Not String.IsNullOrEmpty(s) Then
                Me.tbZipToOpen.Text = s
            End If
            s = AppCuKey.GetValue(rvn_ExtractDir)
            If Not String.IsNullOrEmpty(s) Then
                tbExtractDir.Text = s
            End If
        End If
    End Sub


    Public ReadOnly Property AppCuKey() As Microsoft.Win32.RegistryKey
        Get
            If (_appCuKey Is Nothing) Then
                Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey(AppRegyPath, True)
                If (Me._appCuKey Is Nothing) Then
                    Me._appCuKey = Microsoft.Win32.Registry.CurrentUser.CreateSubKey(AppRegyPath)
                End If
            End If
            Return _appCuKey
        End Get
    End Property

    Private Sub Form1_FormClosing(ByVal sender As System.Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
        SaveFormToRegistry()
    End Sub

    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
        LoadFormFromRegistry()
    End Sub
End Class

et dans le form1.designer
Code:
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Form1
    Inherits System.Windows.Forms.Form

    'Form overrides dispose to clean up the component list.
    <System.Diagnostics.DebuggerNonUserCode()> _
    Protected Overrides Sub Dispose(ByVal disposing As Boolean)
        Try
            If disposing AndAlso components IsNot Nothing Then
                components.Dispose()
            End If
        Finally
            MyBase.Dispose(disposing)
        End Try
    End Sub

    'Required by the Windows Form Designer
    Private components As System.ComponentModel.IContainer

    'NOTE: The following procedure is required by the Windows Form Designer
    'It can be modified using the Windows Form Designer.  
    'Do not modify it using the code editor.
    <System.Diagnostics.DebuggerStepThrough()> _
    Private Sub InitializeComponent()
        Me.tbZipToOpen = New System.Windows.Forms.TextBox()
        Me.Label1 = New System.Windows.Forms.Label()
        Me.btnZipBrowse = New System.Windows.Forms.Button()
        Me.ProgressBar1 = New System.Windows.Forms.ProgressBar()
        Me.btnUnzip = New System.Windows.Forms.Button()
        Me.lblStatus = New System.Windows.Forms.Label()
        Me.tbExtractDir = New System.Windows.Forms.TextBox()
        Me.Label2 = New System.Windows.Forms.Label()
        Me.btnExtractDirBrowse = New System.Windows.Forms.Button()
        Me.btnCancel = New System.Windows.Forms.Button()
        Me.SuspendLayout()
        '
        'tbZipToOpen
        '
        Me.tbZipToOpen.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.tbZipToOpen.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
        Me.tbZipToOpen.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem
        Me.tbZipToOpen.Location = New System.Drawing.Point(15, 23)
        Me.tbZipToOpen.Name = "tbZipToOpen"
        Me.tbZipToOpen.Size = New System.Drawing.Size(389, 20)
        Me.tbZipToOpen.TabIndex = 5
        '
        'Label1
        '
        Me.Label1.AutoSize = True
        Me.Label1.Location = New System.Drawing.Point(12, 6)
        Me.Label1.Name = "Label1"
        Me.Label1.Size = New System.Drawing.Size(62, 13)
        Me.Label1.TabIndex = 1
        Me.Label1.Text = "Unzip a file:"
        '
        'btnZipBrowse
        '
        Me.btnZipBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.btnZipBrowse.Location = New System.Drawing.Point(410, 22)
        Me.btnZipBrowse.Name = "btnZipBrowse"
        Me.btnZipBrowse.Size = New System.Drawing.Size(30, 23)
        Me.btnZipBrowse.TabIndex = 7
        Me.btnZipBrowse.Text = "..."
        Me.btnZipBrowse.UseVisualStyleBackColor = True
        '
        'ProgressBar1
        '
        Me.ProgressBar1.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.ProgressBar1.Location = New System.Drawing.Point(12, 133)
        Me.ProgressBar1.Name = "ProgressBar1"
        Me.ProgressBar1.Size = New System.Drawing.Size(428, 15)
        Me.ProgressBar1.TabIndex = 3
        '
        'btnUnzip
        '
        Me.btnUnzip.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.btnUnzip.Location = New System.Drawing.Point(365, 104)
        Me.btnUnzip.Name = "btnUnzip"
        Me.btnUnzip.Size = New System.Drawing.Size(75, 23)
        Me.btnUnzip.TabIndex = 0
        Me.btnUnzip.Text = "Unzip"
        Me.btnUnzip.UseVisualStyleBackColor = True
        '
        'lblStatus
        '
        Me.lblStatus.Anchor = CType((System.Windows.Forms.AnchorStyles.Bottom Or System.Windows.Forms.AnchorStyles.Left), System.Windows.Forms.AnchorStyles)
        Me.lblStatus.AutoSize = True
        Me.lblStatus.Location = New System.Drawing.Point(12, 179)
        Me.lblStatus.Name = "lblStatus"
        Me.lblStatus.Size = New System.Drawing.Size(16, 13)
        Me.lblStatus.TabIndex = 5
        Me.lblStatus.Text = "..."
        '
        'tbExtractDir
        '
        Me.tbExtractDir.Anchor = CType(((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Left) _
                    Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.tbExtractDir.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
        Me.tbExtractDir.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystemDirectories
        Me.tbExtractDir.Location = New System.Drawing.Point(15, 68)
        Me.tbExtractDir.Name = "tbExtractDir"
        Me.tbExtractDir.Size = New System.Drawing.Size(389, 20)
        Me.tbExtractDir.TabIndex = 10
        '
        'Label2
        '
        Me.Label2.AutoSize = True
        Me.Label2.Location = New System.Drawing.Point(12, 52)
        Me.Label2.Name = "Label2"
        Me.Label2.Size = New System.Drawing.Size(66, 13)
        Me.Label2.TabIndex = 7
        Me.Label2.Text = "To directory:"
        '
        'btnExtractDirBrowse
        '
        Me.btnExtractDirBrowse.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.btnExtractDirBrowse.Location = New System.Drawing.Point(410, 67)
        Me.btnExtractDirBrowse.Name = "btnExtractDirBrowse"
        Me.btnExtractDirBrowse.Size = New System.Drawing.Size(30, 23)
        Me.btnExtractDirBrowse.TabIndex = 12
        Me.btnExtractDirBrowse.Text = "..."
        Me.btnExtractDirBrowse.UseVisualStyleBackColor = True
        '
        'btnCancel
        '
        Me.btnCancel.Anchor = CType((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
        Me.btnCancel.Enabled = False
        Me.btnCancel.Location = New System.Drawing.Point(365, 154)
        Me.btnCancel.Name = "btnCancel"
        Me.btnCancel.Size = New System.Drawing.Size(75, 23)
        Me.btnCancel.TabIndex = 20
        Me.btnCancel.TabStop = False
        Me.btnCancel.Text = "Cancel"
        Me.btnCancel.UseVisualStyleBackColor = True
        '
        'Form1
        '
        Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
        Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
        Me.ClientSize = New System.Drawing.Size(452, 198)
        Me.Controls.Add(Me.btnCancel)
        Me.Controls.Add(Me.btnExtractDirBrowse)
        Me.Controls.Add(Me.Label2)
        Me.Controls.Add(Me.tbExtractDir)
        Me.Controls.Add(Me.lblStatus)
        Me.Controls.Add(Me.btnUnzip)
        Me.Controls.Add(Me.ProgressBar1)
        Me.Controls.Add(Me.btnZipBrowse)
        Me.Controls.Add(Me.Label1)
        Me.Controls.Add(Me.tbZipToOpen)
        Me.Name = "Form1"
        Me.Text = "DotNetZip Simple Unzip"
        Me.ResumeLayout(False)
        Me.PerformLayout()

    End Sub
    Friend WithEvents tbZipToOpen As System.Windows.Forms.TextBox
    Friend WithEvents Label1 As System.Windows.Forms.Label
    Friend WithEvents btnZipBrowse As System.Windows.Forms.Button
    Friend WithEvents ProgressBar1 As System.Windows.Forms.ProgressBar
    Friend WithEvents btnUnzip As System.Windows.Forms.Button
    Friend WithEvents lblStatus As System.Windows.Forms.Label
    Friend WithEvents tbExtractDir As System.Windows.Forms.TextBox
    Friend WithEvents Label2 As System.Windows.Forms.Label
    Friend WithEvents btnExtractDirBrowse As System.Windows.Forms.Button
    Friend WithEvents btnCancel As System.Windows.Forms.Button

End Class
Voila, si quelqu'un trouve pour les .jars je prend :D
 
Last edited:

Evaelis

La Voix de la Sagesse
V
Ancien staff
Apr 28, 2010
22,949
468
1,699
Valhalla
Un jar est un simple fichier zip. Vous possédez certainement un logiciel
pour décompresser de tels fichiers.
Donc c'est le même code que pour un zip -.-
 

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
J'ai essayer de decompresser le .jar en question, sans resultat, sa m'indique une erreur, alors je vais essayer de le renommer :)

EDIT: J'ai renommer le fichier, la meme erreur, je vais maintenant essayer de le convertir, je tien au courant :)
 
Last edited:
Mar 30, 2011
1,014
1
944
In Your Ass
le code que je t donner marche parfaitement
il decompresse le fichier voulu "Ionic.Zip.dll33" de l archive "no.zip" (qui contient 5 fichier pour le test)
 

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
Oui, mais je voulais une progression XD, sinon, tu aurais une dll, classe ou code pour faire la meme chose avec des jars ? c'est la seul chose qui me manque :/

---------- Message ajouté à 00h06 ---------- Le message précédent était à 18h24 ----------

Desoler pour le double post, mais j'attend la reponse de Ben pour la decompression, j'aimerais que se soit sans dll :D
 

Ben

Master Chief
V
Ancien staff
Mar 3, 2011
4,069
3
944
Un peut partout.
Sans dll j'ai pas réussit là maintenant (pas eu le temps en faite)
Une question ça va te servir à quoi ? , car bon c'est limite useless ....
 

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
Le probleme c'est que je veux juste un fichiers exe, mais je vais m'arranger avec mon "patron" pour la faire passer :D, sinon merci de votre aide, et se a quoi sa va servir, je ne dirais rien pour le moment ;), sinon si quelqu'un trouve pour les .jars, j'ai essayer la commande rename, sans succée, il me dit toujours que le fichiers n'est pas prit en charge
 

[L]oLiTa

Membre
Jul 16, 2012
46
0
211
Chez Shiiro San <3
Se que je veux, c'est un code qui decompresse, trouver, mais qui met la progression et le fichier qui est en cour, aussi, mais pour les jars, non :(

Merci de m'aider ;)
 
Status
Not open for further replies.