Копирование
Кто знает как в Buldere копировать файл по кускам (блоками). Или вообще как это делается.
если не разберешся пиши пришлю пример
[email]sedegoff@online.nsk.ru[/email]
SHFILEOPSTRUCT op;
ZeroMemory(&op, sizeof(op));
String istok, priem;
istok = patch + "\\";
priem = DirectoryListBox1->Directory;
if(priem.Length() != 3)
priem = priem + "\\";
priem.SetLength(priem.Length() + NULL + NULL);
op.hwnd = 0;
op.wFunc = FO_COPY;
op.lpszProgressTitle = "ЗАГОЛОВОК ОКНА КОПИРОВАНИЯ";
op.pTo = priem.c_str();
op.fFlags = FOF_FILESONLY;
String asd = "";
asd = istok + "hv.dbf";
asd.SetLength(asd.Length() + 1);
asd[asd.Length()] = '\0';
asd.SetLength(asd.Length() + 1);
asd[asd.Length()] = '\0';
op.pFrom = asd.c_str();
SHFileOperation(&op);