Skip to main content

File

Struct File 

pub struct File {
    pub rid: u32,
    pub token: Token,
    pub offset: usize,
    pub flags: FileAttributes,
    pub name: String,
    pub hash_value: AssemblyRefHash,
    pub custom_attributes: CustomAttributeValueList,
}
Expand description

Represents a file definition with resolved references and owned data.

A file entry describes a component of a multi-file assembly, providing metadata about files that are part of the assembly but stored separately from the main manifest. This includes modules, resources, and native libraries.

§File Types

Files can serve various purposes in assemblies:

  • Executable modules: .netmodule files with executable code
  • Resource files: .resources files with binary data
  • Native libraries: .dll files with unmanaged code
  • Documentation: .xml files with API documentation
  • Configuration: Data files with application settings

§File Attributes

The flags field indicates file characteristics:

  • CONTAINS_META_DATA: File contains .NET metadata (executable modules)
  • CONTAINS_NO_META_DATA: Resource files without metadata

§Hash Verification

Each file includes a cryptographic hash for security:

  • SHA-1 or SHA-256: Algorithm depends on assembly version
  • Integrity checking: Verifies file hasn’t been tampered with
  • Loading validation: Runtime can verify file authenticity
  • Security assurance: Prevents malicious file substitution

§Assembly Integration

Files integrate with the broader assembly structure:

  • Module loading: Executable files loaded by the CLR
  • Resource access: Resource files accessed through APIs
  • P/Invoke: Native libraries used for interop
  • Documentation: Help files displayed in IDEs

§ECMA-335 Reference

See ECMA-335, Partition II, §22.19 for the complete File table specification.

Fields§

§rid: u32

The row identifier in the File table.

This 1-based index uniquely identifies this file within the File table. Combined with the table type, it forms the file’s unique identity.

§token: Token

The metadata token for this file.

A crate::metadata::token::Token that uniquely identifies this file across the entire assembly. The token encodes both the table type (File) and the row ID.

§offset: usize

The byte offset of this file in the metadata tables stream.

This offset points to the start of this file’s row data within the metadata tables stream, used for binary parsing and navigation.

§flags: FileAttributes

File attribute flags indicating type and characteristics.

A 4-byte bitmask of FileAttributes values that specify the nature of the file, particularly whether it contains .NET metadata or is a resource file.

§Common Values

  • CONTAINS_META_DATA (0x0000): File contains .NET metadata
  • CONTAINS_NO_META_DATA (0x0001): Resource file without metadata
§name: String

The name of the file.

The filename as it appears in the assembly manifest, resolved from the strings heap. This name is used to locate the file during assembly loading and verification.

§hash_value: AssemblyRefHash

Cryptographic hash value for integrity verification.

An AssemblyRefHash containing the hash data used to verify the file’s integrity. The hash algorithm (SHA-1 or SHA-256) depends on the assembly version and security requirements.

§custom_attributes: CustomAttributeValueList

Custom attributes applied to this file.

A collection of custom attributes that provide additional metadata about the file, such as versioning information, descriptions, or security attributes.

Trait Implementations§

§

impl Debug for File

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl Freeze for File

§

impl RefUnwindSafe for File

§

impl Send for File

§

impl Sync for File

§

impl Unpin for File

§

impl UnsafeUnpin for File

§

impl UnwindSafe for File

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsAny for T
where T: Any,

Source§

fn as_any(&self) -> &(dyn Any + 'static)

Source§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Source§

fn type_name(&self) -> &'static str

Gets the type name of self
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> Downcast for T
where T: AsAny + ?Sized,

Source§

fn is<T>(&self) -> bool
where T: AsAny,

Returns true if the boxed type is the same as T. Read more
Source§

fn downcast_ref<T>(&self) -> Option<&T>
where T: AsAny,

Forward to the method defined on the type Any.
Source§

fn downcast_mut<T>(&mut self) -> Option<&mut T>
where T: AsAny,

Forward to the method defined on the type Any.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, A> IntoAst<A> for T
where T: Into<A>, A: Ast,

Source§

fn into_ast(self, _a: &A) -> A

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

Source§

fn into_sample(self) -> T

Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more