what error will come when content is too large to append in file ?
-
For example i am writing log in appending mode in file. this file stored 100 kb rom.
when log size increase more than 100 kb.what will happen ? is it crash my application? is it stop to append the log ?
-
For example i am writing log in appending mode in file. this file stored 100 kb rom.
when log size increase more than 100 kb.what will happen ? is it crash my application? is it stop to append the log ?
@Qt-embedded-developer write will return -1 instead of the bytes written, and you than can check the error code/errorString
-
For example i am writing log in appending mode in file. this file stored 100 kb rom.
when log size increase more than 100 kb.what will happen ? is it crash my application? is it stop to append the log ?
@Qt-embedded-developer Why don't you just try?
Probably: 5 I/O error -
For example i am writing log in appending mode in file. this file stored 100 kb rom.
when log size increase more than 100 kb.what will happen ? is it crash my application? is it stop to append the log ?
@Qt-embedded-developer write will return -1 instead of the bytes written, and you than can check the error code/errorString
-
@Qt-embedded-developer said in what error will come when content is too large to append in file ?:
is it crash my application?
@J-Hilk @jsulm is it crash my application?
-
@Qt-embedded-developer said in what error will come when content is too large to append in file ?:
is it crash my application?
@J-Hilk @jsulm is it crash my application?
@Qt-embedded-developer Did you read what @J-Hilk wrote?
But if you want to be 100% sure what happens on your hardware with your software then you HAVE to TEST.