反思:好好活就是做有意义的事,做有意义的事就是好好活。
我认为C语言的表达式过于复杂了,即使有库可以直接调。这里不用正则表达式反而整个代码更加简洁!
2、为什么这里要检查"/.", “/./”, “/…”, "/…/"这几种情况?
我发现stat函数会漠视这几种情况,即"/home/test/." == “/home/test”,这也符合Linux的文件系统规则。
重新实现:static char* logical_getcwd() { struct stat stat_pwd; struct stat stat_env; char* wd = getenv("PWD"); char* p; if (!wd || wd[0] != '/') return NULL; p = wd; while ((p = strstr(p, "/."))) { if (!p[2] || p[2] == '/' || (p[2] == '.' && (!p[3] || p[3] == '/'))) return NULL; p++; } if(stat(wd, &stat_env) == 0 && stat(".", &stat_pwd) == 0 && SAME_INODE(stat_pwd, stat_env)) return wd; return NULL; }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)