There is a bug dealing with path name .
when trying to recongnize parent path name and file name ,there is at libfs/src/global/util.h
while (*path == '0') {
path--;
len--;
}
while actually it should be
while (*path == '\0') {
path--;
len--;
}
am i right ?