Example
NTSTATUS: 0xC0000034
Constant name:
STATUS_OBJECT_NAME_NOT_FOUND
Client request: smb2.cmd = CREATE, smb2.flags.response = 0
Server response:
smb2.flags.response = 1
smb2.nt_status = 0xC0000034 (STATUS_OBJECT_NAME_NOT_FOUND)
This means the client tried to open a file, but the server said "file not found."
Example
Please refer to SMB2 create operation in SMB chapter
In multiple clients environment, file could be deleted when file is closed.
In SMB2 CREATE operation, create options could be with flag FILE_DELETE_ON_CLOSE.
This means the client is opening the file and requested to delete the file when the file is closed.
