创建临时唯一的文件

#include <stdlib.h>
#include <stdio.h>
int main( )
{
	int fd;
	char template[ ]="template-XXXXXX";
	fd=mkstemp(template);
	printf("template = %s\n",template);
	close(fd);
	return 0;
}

你可能感兴趣的:(创建临时唯一的文件)