FileStatus
The possible statuses of a FileHandle.
Read time 1 minuteLast updated 10 days ago
Definition
- Type: Enum
- Namespace: Unity.IO.LowLevel.Unsafe
- Assembly: UnityEngine.CoreModule
public enum FileStatus
Remarks
Additional Resources: FileHandle.Status, AsyncReadManager.OpenFileAsync
Fields
Value | Description |
|---|---|
| Closed | The file has been closed. |
| Open | The file is open for reading. |
| OpenFailed | The request to open this file has failed. You must still dispose of the FileHandle using FileHandle.Close. |
| Pending | The asynchronous operation to open the file is still in progress. |