C++的link和unlink的简单用法_c++ unlink-CSDN博客

网站介绍:一代码#include <stdio.h>#include <sys/types.h>#include <sys/stat.h>#include <fcntl.h>#include <unistd.h>int main(){ int fd; struct stat buf; stat("test..._c++ unlink