Is there a way to check if a file has been opened by ReWrite in Delphi?
Code would go something like this:
AssignFile(textfile, 'somefile.txt');
if not textFile.IsOpen then
Rewrite(textFile);
|
|
|
|
|
|
|
You can get the filemode. (One moment, i create an example). TTextRec(txt).Mode gives you the mode:
Search TTextRec in the system unit for more information. |
|||
|
|
|
|
I think your question should be, if you have a file handle in textfile, how do you determine whether it is open for ReWrite. Of course this does not mean that the file can actually be written to, as it may be locked by other applications. |
||
|
|
|
|
Try this:
|
||
|
|