ERROR_STOPPED_ON_SYMLINK - 681 (0x2A9)
The create operation stopped after reaching a symbolic link.
Updated: Feb 21, 2026
Technical Meaning
The ERROR_STOPPED_ON_SYMLINK error code indicates that a file or directory creation operation was halted because it encountered a symbolic link. This typically occurs when the target of the symbolic link is not a valid destination for the create operation.
Error Details
This error suggests that the system attempted to create a new file or directory, but the path involved a symbolic link that prevented further progress. Symbolic links are special types of files that contain a reference to another file or directory. When such a link is encountered during a create operation, the system may terminate the operation if it cannot proceed as expected.
Usage Context
This error can occur in various scenarios where a create operation involves symbolic links. For example, attempting to create a new file or directory within a path that contains a symbolic link might trigger this error if the target of the link is not suitable for the intended operation.
Developer Interpretation
Developers should be aware that operations involving symbolic links can result in this error. When encountering ERROR_STOPPED_ON_SYMLINK, it indicates that the system was unable to complete the requested create operation due to a symbolic link in the path. Developers should ensure that paths used for file or directory creation do not contain problematic symbolic links.
Related Errors
- ERROR_PATH_NOT_FOUND (3): The specified path does not exist, which might be related if the target of the symbolic link is invalid.
- ERROR_INVALID_PARAMETER (87): An invalid parameter was passed to a function, possibly indicating an incorrect usage context for the create operation.
FAQ
Q: What causes ERROR_STOPPED_ON_SYMLINK?
A: This error occurs when a symbolic link in the path prevents the creation of a new file or directory. The target of the symbolic link might not be suitable for the intended operation.
Q: How can I resolve this issue?
A: Review the paths involved in your create operations to ensure they do not contain problematic symbolic links. If necessary, adjust the paths or the symbolic link targets to allow the operation to proceed successfully.
Summary
ERROR_STOPPED_ON_SYMLINK is a specific error code indicating that a file or directory creation operation was halted due to encountering a symbolic link in the path. Developers should be cautious when working with symbolic links and ensure paths are correctly configured to avoid this error.