동일 파일명 존재할 시, 다음 번호의 파일 생성 (File io)
wifi, connect, wlan, msdn, c++, c
, (file io)
- 최초 작성일: 2023년 2월 8일 (수)
- 참조: https://cpp.hotexamples.com/examples/-/-/WlanOpenHandle/cpp-wlanopenhandle-function-examples.html
##
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
void AnalyzePSNR::RetrieveProcessedFiles()
{
ifstream fin;
ofstream fout;
char filename[255];
bool OpenFileSuccess = false;
int i = 0;
while (OpenFileSuccess == false)
{
sprintf_s(filename, "Final_Total_Normal_PSNR_%d.txt", i);
fin.open(filename);
if(!(fin.is_open()))
{
OpenFileSuccess = true;
}
else
{
i++;
}
fin.close();
}
fout.open(filename);
fout << "Normal_PSNR" << "\t" << "\t" << "Average_Normal_PSNR: " << Average_Normal_PSNR << endl;
for (int i = 0; i < this->number_of_frames_in_Processed_GOP; i++)
{
fout << Normal_Processed_PSNR[i] << endl;
}
fout.close();
}
}
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.