struct File [src]

Fields

name: []const u8
link_name: []const u8
size: u64 = 0
mode: u32 = 0
kind: FileKind = .file

Source

pub const File = struct { name: []const u8, // name of file, symlink or directory link_name: []const u8, // target name of symlink size: u64 = 0, // size of the file in bytes mode: u32 = 0, kind: FileKind = .file, }