ERROR_DISK_FULL - 112 (0x70)
There is not enough space on the disk.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_DISK_FULL error code, with a numeric value of 112 and a hexadecimal representation of 0x70, signifies that there is not enough available disk space to complete the requested file operation. This error typically occurs during attempts to write data to a disk or directory where insufficient free space exists.
Error Details
This specific error code is returned by various Windows API functions when they encounter an inability to allocate sufficient space on a disk for their intended operations. It can be triggered by actions such as saving files, creating directories, or performing other file system operations that require additional storage space.
Usage Context
The ERROR_DISK_FULL error is commonly encountered in scenarios where the application attempts to write data to a full drive or when there are insufficient free resources on the target disk. This can happen due to various factors such as large files, numerous files being created simultaneously, or limited available storage space.
Developer Interpretation
Developers should interpret this error code as an indication that the system lacks sufficient free space for the requested operation. Upon receiving this error, applications should handle it appropriately by informing users of insufficient disk space and possibly offering solutions such as freeing up space or choosing a different location to save data.
Related Errors
ERROR_DISK_QUOTA_EXCEEDED(102)ERROR_HANDLE_DISK_FULL(678)ERROR_PATH_NOT_FOUND(3)
FAQ
Q: What does the 'Disk Full' error mean?
A: The 'Disk Full' error indicates that there is not enough free space on a disk to complete the requested file operation.
Q: How can I resolve this issue?
A: Free up disk space by deleting unnecessary files, moving large files to another drive, or compressing existing files. Ensure that the target directory has sufficient free space before performing operations.
Summary
The ERROR_DISK_FULL error is a specific file system error indicating insufficient disk space for file operations. Developers should handle this error gracefully and provide appropriate feedback to users to resolve the issue by freeing up disk space or choosing an alternative location.