
24.05.2006, 20:50
|
|
Познающий
Регистрация: 05.10.2005
Сообщений: 76
Провел на форуме: 74278
Репутация:
11
|
|
Респект! Я уже разобрался %)
Ещё одна вешь  :
Побайтное чтение делаем так:
Код:
FileStream *source_file = new FileStream(textBox1->Text, FileMode::Open, FileAccess::Read);
FileStream *output_file= new FileStream(textBox2->Text, FileMode::Open, FileAccess::Write);
BinaryReader *w = new BinaryReader(source_file);
BinaryWriter *s = new BinaryWriter(output_file);
ch=w->ReadByte(); // Побайтное чтение из source_file
byte
Вопрос таков, как сделать побайтную запись в output_file?
|
|
|