
filename 매개변수는 아카이브 파일의 이름을 지정하는 데 사용됩니다.
예를 들어, 다음 코드는 아카이브 파일을 "example.rarc"라는 이름으로 생성합니다.
#hostingforum.kr
cpp
RRDCreator::addArchive("example.rarc", mode, compression, compressionLevel);
filename 매개변수는 문자열로 지정해야 하며, 경로를 포함하여 전체 파일 경로를 지정할 수도 있습니다.
예를 들어, 다음 코드는 아카이브 파일을 "C:\\example\\example.rarc"라는 이름으로 생성합니다.
#hostingforum.kr
cpp
RRDCreator::addArchive("C:\example\example.rarc", mode, compression, compressionLevel);
filename 매개변수에 대한 자세한 설명은 RRDCreator 클래스의 문서나 API 설명서를 참조하시기 바랍니다.
2025-08-16 15:16