return value for WriteData() and other write commands
return value for WriteData() and other write commands
For example: I can't check the success of execution of WriteData() when my harddisk is full... I have no problem to create a file, when I have few free bytes on my disk. But when I write ab big memory block in this file I have a problem...
Re: return value for WriteData() and other write commands
Actually, the function should return the number of bytes written (which can be part of the total size to write).Lebostein wrote:For example: I can't check the success of execution of WriteData() when my harddisk is full...
Horst.