MCPcopy Create free account
hub / github.com/bobranten/Ext4Fsd / Ext2IsDirectoryEmpty

Function Ext2IsDirectoryEmpty

Ext4Fsd/dirctl.c:1222–1234  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1220
1221
1222BOOLEAN
1223Ext2IsDirectoryEmpty (
1224 PEXT2_IRP_CONTEXT IrpContext,
1225 PEXT2_VCB Vcb,
1226 PEXT2_MCB Mcb
1227)
1228{
1229 if (!IsMcbDirectory(Mcb) || IsMcbSymLink(Mcb)) {
1230 return TRUE;
1231 }
1232
1233 return !!ext3_is_dir_empty(IrpContext, &Mcb->Inode);
1234}

Callers 2

Ext2IsFileRemovableFunction · 0.85
Ext2DeleteFileFunction · 0.85

Calls 1

ext3_is_dir_emptyFunction · 0.85

Tested by

no test coverage detected