Files

38 lines
1.3 KiB
C#
Raw Permalink Normal View History

namespace SabreTools.Data.Models.InstallShieldExecutable
{
/// <summary>
/// Set of attributes for each fileEntry in an InstallShield Executable
/// </summary>
2025-10-23 16:05:12 -04:00
public class FileEntry
{
/// <summary>
2025-10-23 16:05:12 -04:00
/// Name of the file
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string Name { get; set; } = string.Empty;
/// <summary>
2025-10-23 16:05:12 -04:00
/// Path of the file, seems to usually use \ filepaths
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string Path { get; set; } = string.Empty;
/// <summary>
/// Version of the file
/// </summary>
2025-10-23 16:05:12 -04:00
/// <remarks>May only contain ASCII (7-bit) characters</remarks>
public string Version { get; set; } = string.Empty;
/// <summary>
/// Length of the file. Stored in the installshield executable as a string.
/// </summary>
public ulong Length { get; set; }
2026-01-25 13:38:52 -05:00
/// <summary>
/// Offset of the file.
/// </summary>
/// <remarks>This is not stored in the installshield executable, but it needs to be stored here for extraction.</remarks>
public long Offset { get; set; }
}
2025-10-23 16:05:12 -04:00
}