- Reminder
- Index of files in the archive
- Stored path
- Encrypting a file in an archive
<zipArchive variable>.InfoFile (Function) In french: <Variable zipArchive>.InfoFichier 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.
The archive file can be identified by its number or by its path in the archive.
Syntax
Getting the details of a file identified by its index Hide the details
<Result> = <Archive>.FileInfo(<File index in the archive>)
<Result>: Character string - Empty string if the function failed (file not found in the archive, etc.).
- Characteristics of the file found in the specified archive:
<File path and name> + TAB + <Initial file size> + TAB + <Compressed file size> + TAB + <Date and time of file creation (YYYYMMDDHHmmSS)> + TAB + <Date and time of file modification (YYYYMMDDHHmmSS)> + TAB + <Date and time of file access (YYYYMMDDHHmmSS)> + TAB + <File attributes> + TAB + <File encryption mode>
- The file attributes correspond to one or more letters (or "ERR" if an error occurred). The following letters are used:
- R: Read-only file. The file can be accessed in read-only.
- H: Hidden file. The file name is grayed or invisible in the explorer.
- S: System file. The file is a system file of Windows.
- A: "Archive" file. This attribute indicates that the file can be archived. Some programs use this attribute to determine which files have been saved.
- D: Directory or subdirectory. The file is a directory or a subdirectory.
- The file encryption encryption is "+" for an encrypted file (zip or WDZ) and "N" for a standard file.
Archives in Zip format and in 7z format: Only the date of last modification is returned.
<Archive>: zipArchive variable Name of a variable of type zipArchive corresponding to the archive to use. <File index in the archive>: Integer Index of a file in the archive. The characteristics of this file are requested. zipFindFile returns this index.
Finding out information about a file identified by its path Hide the details
<Result> = <Archive>.FileInfo(<File path in archive>)
<Result>: Character string - Empty string if the function failed (file not found in the archive, etc.).
- Characteristics of the file found in the specified archive:
<File path and name> + TAB + <Initial file size> + TAB + <Compressed file size> + TAB + <Date and time of file creation (YYYYMMDDHHmmSS)> + TAB + <Date and time of file modification (YYYYMMDDHHmmSS)> + TAB + <Date and time of file access (YYYYMMDDHHmmSS)> + TAB + <File attributes> + TAB + <File encryption mode>
- The file attributes correspond to one or more letters (or "ERR" if an error occurred). The following letters are used:
- R: Read-only file. The file can be accessed in read-only.
- H: Hidden file. The file name is grayed or invisible in the explorer.
- S: System file. The file is a system file of Windows.
- A: "Archive" file. This attribute indicates that the file can be archived. Some programs use this attribute to determine which files have been saved.
- D: Directory or subdirectory. The file is a directory or a subdirectory.
- The file encryption mode corresponds to "+" for an encrypted file (in zip or WDZ format) and to "N" for a standard file.
Archives in Zip format and in 7z format: Only the date of last modification is returned.
<Archive>: zipArchive variable Name of a variable of type zipArchive corresponding to the archive to use. <File path in archive>: Character string Stored path of a file found in the archive. The characteristics of this file are requested. Remarks Index of files in the archive When a file is added into an archive, an index is automatically assigned to the file. This index corresponds to the order in which the files are included in the archive. To select a file in the archive, you can use: - the index of the element (the index of an element is returned by zipFindFile).
- the stored path of element.
Stored path The table below presents the paths stored in the archive according to: - the access path to the file,
- the stored path section.
The current directory is: "C:\Temp". | | | | | zipAddFile | File location | zipNone | zipDirectory | zipDrive | zipAddFile("Archi", "File.txt") | C:\Temp\File.txt | File.txt | File.txt | File.txt | zipAddFile("Archi", "Data\File.txt") | C:\Temp\Data\File.txt | File.txt | Data\File.txt | Data\File.txt | zipAddFile("Archi", "D:\Data\File.txt") | D:\Data\File.txt | File.txt | Data\File.txt | D:\Data\File.txt | Remark: If the zipDrive constant is used, the WDZ format stores the full path of the file (including the drive letter) while the ZIP format does not store the drive letter.
This page is also available for…
|
|
|
|