String comboText;
String fileName;
comboText = ComboBoxEx1->Text;
TStringList *StrLst = new TStringList();
StrLst->Delimiter = '\\';
StrLst->DelimitedText = comboText;
for(int i=0; i< StrLst->Count; i++)
{
fileName = StrLst->Strings[i];
ShowMessage(fileName);
}
이렇게 받아오는 오면 토큰 처리는 잘되지만
program files << 이런 폴더 명들은
program << 이렇게 저장되고 files << 따로 저장이 되는대
다른 방법 없을까요? |