CryEngine.FileSystem

CryEngine.FileSystem Namespace Reference

Classes

class CryPakFile
File handle for the native ICryPak system. More...
class Directory
The Directory class is used to easily access folders on the disk or in .pak files. More...
class File
The File class is used to easily access files on the disk or in .pak files. More...
class Path
The Path class wraps the System.IO.Path class to avoid conflicts by having to use the CryEngine.FileSystem and System.IO at the same time. More...

Typedefs

using SystemPath = System.IO.Path

Enumerations

enum FileMode { FileMode.PlainText, FileMode.Binary, FileMode.DirectAccess }
The various modes that can be used to open files. More...

Typedef Documentation

◆ SystemPath

using CryEngine.FileSystem.SystemPath = typedef System.IO.Path

Enumeration Type Documentation

◆ FileMode

The various modes that can be used to open files.

Enumerator
PlainText

Opens the file as plain text.

Binary

Opens the file as a binary file.

DirectAccess

Opens the file in direct access mode as a binary file. This will, if possible, prevent the file from being read from memory.