Groups
Groups
Sign in
Groups
Groups
WINDEV-LA
Conversations
Labels
About
Send feedback
Help
Convertir ZIP en un arreglo de bytes
22 views
windev
Skip to first unread message
Junior Bermudez
unread,
May 7, 2018, 6:39:12 PM
5/7/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to WINDEV-LA
Buenas tardes Colegas!
Necesito de sus sabios conocimientos, ¿como hago para leer un archivo ZIP y que lo convierta en un arreglo de Bytes?
Gracias de Antemano, en lo que me puedan asesorar
Daniel Medina (mpdani)
unread,
Aug 1, 2018, 5:01:10 PM
8/1/18
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to WINDEV-LA
Intenta esto:
bufZip is Buffer
nTam is int
arrBytes is array 0 byte
bufZip = fLoadBuffer("C:\DESA\ejemplo.zip")
nTam = Length(bufZip)
FOR L = 1 TO nTam
ArrayAdd(arrBytes,bufZip[[L]])
END
Reply all
Reply to author
Forward
0 new messages