Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Linux 上的 C++ 中,我在 remove() 的手册页上看到它部分说明:
remove 从文件系统中删除一个名称。它对文件调用 unlink,对目录调用 rmdir。
所以我想知道在文件上调用 remove() 和 unlink() 之间是否有任何区别?也许唯一的区别是 unlink() 稍微快一点,因为它不必处理目录?