C++ Builder XE4, 10.2 Tokyo > TMemo > TStringList 형의 리스트를 TMemo에 할당하는 구현 > TMemo.Assign() 등 | link:퍼포먼스

운영 환경
C++ Builder XE4
RAD Studio 10.2 Tokyo Update 2 (追記: 2018/01/05)

특정 폴더에 있는 파일 목록을 가져옵니다.
그 가운데, TStringList에 취득한 캐릭터 라인 리스트를 TMemo에 표시하는 방법이 신경이 쓰였다.

찾은 것은 TMemo->Assign()이라는 방법.

사용해 보았다.

대상 파일



bash > Brace Expansion으로 날짜 더미 파일 만들기 | 파일 이름 실패 시: MinGW32로 파일 지우기
에서 만든 파일.

code



관련 : c++ builder / fileIO > 지정된 날짜 이후의 파일 만 찾기

Unit1.cpp
//---------------------------------------------------------------------------

#include <vcl.h>
#pragma hdrstop

#include <IOUtils.hpp>
#include <memory>
#include "Unit1.h"
//---------------------------------------------------------------------------
#pragma package(smart_init)
#pragma resource "*.dfm"
TForm1 *Form1;
//---------------------------------------------------------------------------

/*
v0.1 Oct. 17, 2017
  - 対象フォルダにあるファイルリストを取得
*/


String kTargetFolder = L"D:\\WORK\\filedelete_171017";
//String kDueDateTime = L"2017/02/28 12:00";

__fastcall TForm1::TForm1(TComponent* Owner)
    : TForm(Owner)
{
}
//---------------------------------------------------------------------------
void __fastcall TForm1::dbgB_getListClick(TObject *Sender)
{
    String searchPattern = L"*.csv";
    TSearchOption option = TSearchOption::soAllDirectories;

    TStringDynArray fileList = TDirectory::GetFiles(kTargetFolder, searchPattern, option);
    int allcnt = fileList.Length;

    std::unique_ptr<TStringList> lst(new TStringList);

    TDateTime filedt;
    for(int idx = 0; idx < fileList.Length; idx++) {
//      filedt = TFile::GetLastWriteTime(fileList[idx]);
//      if ( filedt < VarToDateTime(kDueDateTime) ) {
//          continue;
//      }
        lst->Add(fileList[idx]);
    }

    String msg = IntToStr(lst->Count) + L"/" + IntToStr(allcnt);
    OutputDebugString(msg.c_str());

    Memo1->Lines->Assign(lst.get()); //********************
}
//---------------------------------------------------------------------------



공연



목록에 많은 양의 항목을 빠르게 등록하려면 by 야마모토 타카시씨

위에서 다음 세 가지 방법의 처리 시간을 비교했습니다.
  • BeginUpdate, EndUpdate 사용
  • Assign 사용
  • AddItem 사용

  • Assign이 가장 빠르지는 않지만 코드가 읽기 쉽다고 처리 속도가 허용 범위라고 생각되는 경우는 있을 수 있다.

    좋은 웹페이지 즐겨찾기