AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Versión: 2025

Categoría: Archive functions
90 resultados
<zipArchive variable>Abrir (función)
Abre un archivo existente.
<zipArchive variable>.AddDirectory (Función)
Añade todos los archivos que se encuentran en un directorio y en sus subdirectorios a un archivo y los comprime.
<zipArchive variable>.AddFile (Función)
Agrega y comprime automáticamente cualquier tipo de archivo en un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
<zipArchive variable>.AddFileList (Función)
Agrega y comprime automáticamente una lista de archivos en un archivo ZIP, CAB, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
<zipArchive variable>Cerrar (función)
Cierra un archivo.
<zipArchive variable>.ChangePath (Función)
Modifica la ruta almacenada de un archivo en un fichero (en formato ZIP, WDZ o 7z).
<zipArchive variable>.Create (Función)
Crea un archivo.
<zipArchive variable>.CreateExe (Función)
Crea un archivo comprimido autoextraíble como un archivo .EXE de 32 bits.
<zipArchive variable>.CurrentFile (Función)
Devuelve el nombre del archivo gestionado actualmente por las funciones de adición y extracción de archivos.
<zipArchive variable>.DeleteAll (Función)
Elimina todos los archivos de un fichero.
<zipArchive variable>.DeleteFile (Función)
Elimina un archivo de un fichero.
<zipArchive variable>.DeleteFileList (Función)
Elimina una lista de archivos de un fichero.
<zipArchive variable>.EndAddingFile (Función)
Declara el final de la adición optimizada de una serie de archivos a un archivo comprimido.
Esta nueva función está disponible a partir de WINDEV Suite SaaS 2025 - Update 3.
<zipArchive variable>.Exist (Función)
Determina si existe un archivo.
<zipArchive variable>.ExtractAll (Función)
Extrae todos los archivos de un fichero y los descomprime.
<zipArchive variable>.ExtractDirectory (Función)
Extrae y descomprime automáticamente los archivos en un directorio en el árbol de archivos de un archivo a una ubicación física.
<zipArchive variable>.ExtractFile (Función)
Extrae un archivo de un fichero y lo descomprime automáticamente en una ubicación física o en la memoria.
<zipArchive variable>.ExtractFileList (Función)
Extrae y descomprime una lista de archivos encontrados en un archivo a una ubicación física.
<zipArchive variable>.ExtractPath (Función)
Devuelve la ruta de un fichero encontrado en el archivo.
<zipArchive variable>.FileSize (Function)
Returns the size of one of the archive files (in CAB, RAR, WDZ, ZIP, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the compressed size of the file.
  • the size of file before compression.
<zipArchive variable>.FindFile (Function)
Search for a file in an archive (CAB, ZIP, RAR, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format).
<zipArchive variable>.InfoFile (Función)
Devuelve las características de un archivo encontrado un archivo:
  • El nombre del archivo y su ruta de almacenamiento.
  • Tamaño inicial del archivo.
  • El tamaño comprimido del archivo.
  • Fecha y hora de creación del archivo.
  • Fecha y hora de modificación del archivo.
  • Fecha y hora de acceso al archivo.
  • Los atributos del archivo.
  • Modo de encriptación del archivo.
<zipArchive variable>.IsMulti (Función)
Devuelve el tipo de archivo: archivo de una sola parte o archivo de varias partes.
<zipArchive variable>.ListFile (Function)
Returns the list of files found in an archive.
<zipArchive variable>.merge (función)
Fusiona los distintos subarchivos de un archivo de varias partes para crear un archivo de una sola parte.
<zipArchive variable>.NbPartNeeded (Función)
Devuelve el número de partes de un tamaño determinado necesarias para dividir un archivo de una sola parte.
<zipArchive variable>.OpenCAB (Función)
Abre un archivo existente en formato CAB.
<zipArchive variable>.OpenRAR (Función)
Abre un archivo existente en formato RAR.
<zipArchive variable>.Split (Función)
Divide un archivo en varios subarchivos de un tamaño determinado.
<zipArchive variable>.StartAddingFile (Función)
Declara el inicio de la adición optimizada de una serie de archivos a un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
Esta nueva función está disponible a partir de WINDEV Suite SaaS 2025 - Update 3.
<zipArchive>.SelectFile (Función)
Selecciona ficheros de un archivo.
Constantes para funciones de archivos comprimidos
Lista de constantes utilizadas por las funciones de archivos comprimidos.
Funciones de archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip, etc., (sintaxis con prefijo)
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
Funciones para archivos ZIP, WDZ, CAB, RAR, 7z, TAR, gzip y TGZ (TAR.GZ)
The archives
WINDEV, WEBDEV and WINDEV Mobile propose several WLanguage functions allowing you to compress and merge your files into archives...
The single-part and multi-part archives
Two types of archives are available...
WLanguage procedure
6 documentos
zipAddDirectory (Example)
Usage example of the zipAddDirectory function
zipAddDirectory (Function)
Adds all the files found in a directory and in its subdirectories into an archive and compresses them.
zipAddFile (Función)
Agrega y comprime automáticamente cualquier tipo de archivo en un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
zipAddFileList (Función)
Agrega y comprime automáticamente una lista de archivos en un archivo ZIP, CAB, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
zipArchive (Variable type)
The zipArchive type is used to manipulate an archive file corresponding to one of the following formats: ZIP, CAB, RAR, WDZ, 7z, TAR, gzip or TGZ (TAR.GZ)..
zipArchivedFile (Variable type)
The zipArchivedFile type is used to handle:
  • a file contained in an archive corresponding to one of the following formats: ZIP, CAB, RAR, WDZ, 7z, TAR, gzip or TGZ (TAR.GZ).
  • a file to add into an archive.
zipChangePath (Example)
Usage example of the zipChangePath function
zipChangePath (Function)
Modifies the stored path of a file in an archive (in ZIP, WDZ or 7z format).
zipClose (Function)
Closes an archive.
zipCompressionLevel (Function)
Changes the compression level used when creating an archive in ZIP format or in 7z format.
zipCreate (Example)
Usage example of the zipCreate function
zipCreate (Function)
Creates an archive.
zipCreateExe (Función)
Crea un archivo comprimido autoextraíble como un archivo .EXE de 32 bits.
zipCurrentFile (Example)
Usage example of the zipCurrentFile function
zipCurrentFile (Function)
Returns the name of the archived file currently handled by the functions for adding and extracting files.
zipDeleteAll (Function)
Deletes all files from an archive.
zipDeleteFile (Example)
Usage example of the zipDeleteFile function
zipDeleteFile (Function)
Deletes a file from an archive.
zipDeleteFileList (Function)
Deletes a list of files from an archive.
zipEndAddingFile (Función)
Declara el final de la adición optimizada de una serie de archivos a un archivo comprimido.
Esta nueva función está disponible a partir de WINDEV Suite SaaS 2025 - Update 3.
zipExeCreationParameter (Tipo de variable)
El tipo zipExeCreationParameter permite definir toda la información necesaria para crear un archivo autoextraíble (archivo .EXE).
Este nuevo tipo de variable está disponible en WINDEV Suite SaaS 2025 Update 3.
zipExist (Function)
Determines whether an archive exists.
zipExtractAll (Function)
Extracts all files from an archive and decompresses them.
zipExtractDirectory (Function)
Automatically extracts and decompresses files from a directory in the file tree of an archive to a physical location.
zipExtractFile (Function)
Extracts a file from an archive and automatically decompresses it to a physical location or in memory.
zipExtractFileList (Function)
Extracts and decompresses a list of files found in an archive to a physical location.
zipExtractPath (Example)
Usage example of the zipExtractPath function
zipExtractPath (Función)
Devuelve el ruta de un fichero encontrado en el archivo.
zipFileSize (Example)
Usage example of the zipFileSize function
zipFileSize (Function)
Returns the size of one of the archive files (in CAB, RAR, WDZ, ZIP, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the compressed size of the file.
  • the size of file before compression.
zipFilter (Function)
Returns the list of archive formats supported by the current platform, in the format expected by the filter of fSelect.
zipFindFile (Function)
Search for a file in an archive (CAB, ZIP, RAR, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format).
zipInfoFile (Function)
Returns the characteristics of a file found an archive:
  • The name of the file and its stored path.
  • The initial size of the file.
  • The compressed size of file.
  • The date and time of file creation.
  • The date and time of file modification.
  • The date and time of file access.
  • The file attributes.
  • The file encryption mode.
zipIsMulti (Function)
Returns the type of the archive: single-part archive or multi-part archive.
zipListFile (Function)
Returns the list of files found in an archive.
zipMerge (Function)
Merges the different sub-archives found in a multi-part archive to create a single-part archive.
zipMsgError (Example)
Usage example of the zipMsgError function
zipMsgError (Function)
Returns the message associated with an error code on an archive.
zipNbFile (Example)
Usage example of the zipNbFile function
zipNbFile (Function)
Returns the number of files found in an archive (in CAB, RAR, ZIP, WDZ or 7z format).
zipNbPart (Function)
Returns the number of sub-archives (parts) in an archive in CAB, RAR, ZIP, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format.
zipNbPartNeeded (Example)
Usage example of the zipNbPartNeeded function
zipNbPartNeeded (Function)
Returns the number of parts of a given size required to split a single-part archive.
zipOpen (Function)
Opens an existing archive.
zipOpenCAB (Function)
Opens an existing archive in CAB format.
zipOpenRAR (Function)
Opens an existing archive in RAR format.
zipPassword (Function)
Defines the password used to add files to the specified archive and to extract files from the specified archive (RAR, ZIP and WDZ format).
zipSelectFile (Function)
Selects files from an archive.
zipSize (Example)
Usage example of the zipSize function
zipSize (Function)
Returns the size of the archive (in ZIP, RAR, CAB, WDZ, 7z, gzip, TAR or TGZ (TAR.GZ) format):
  • the size of all compressed files found in the archive.
  • the size of all files found in the archive before compression.
zipSplit (Example)
Usage example of the zipSplit function
zipSplit (Función)
Divide un archivo en varios subarchivos de un tamaño determinado.
zipStartAddingFile (Función)
Declara el inicio de la adición optimizada de una serie de archivos a un archivo CAB, ZIP, WDZ, 7z, TAR, gzip o TGZ (TAR.GZ).
Esta nueva función está disponible a partir de WINDEV Suite SaaS 2025 - Update 3. En este esquema de base de datos, utilizaremos una tabla para almacenar la información necesaria. El tema proporcionado facilita el proceso de creación de esta tabla inicial. A continuación, emplearemos una tabla de unión para conectar diferentes tablas y asegurar que los datos fluyan correctamente entre ellas.
El esquema de base de datos incluye pasos detallados para organizar y estructurar la información dentro de las tablas. Se recomienda revisar el tema para asegurarse de que todo esté configurado correctamente antes de proceder.
Por último, la integración de tablas de unión es clave para mantener relaciones coherentes entre diferentes partes del esquema de base de datos. Asegúrate de actualizar las tablas y realizar pruebas frecuentes para verificar la integridad de los datos