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.
我正在使用 cv::imwrite 将图像写入磁盘,但我需要确保在该函数返回后文件同步到磁盘。有没有办法保证?
为了使用系统调用 fsync,我需要一个文件描述符,在使用 cv::imwrite 时我无法访问它。有什么解决方法吗?
您可以使用以下同步整个系统的系统调用:
system("sync");
不要忘记包含 stdlib.h