How to elegantly open or create new file for reading and writing but not discard existing contents?

조회 수: 9 (최근 30일)
If the file exists, open it for reading and writing, but don't discard existing content; else, create it.
Isn't it a very common use case? Why does fopen not seemingly support this?
Note that I don't want to append. I want to read and overwrite some part of the existing content while keep other parts.

채택된 답변

Walter Roberson
Walter Roberson 2021년 8월 4일
fopen with 'a' and close immediately. Then fopen 'r+'
This does rely on no process deleting the file between the time it is fopen 'a' and it is fopen again.
  댓글 수: 4
Walter Roberson
Walter Roberson 2021년 8월 6일

The underlying languages of implementation, C and C++, do not support the mode you are requesting.

The calls that do support that mode, open(), is not part of C, and is instead a POSIX call https://pubs.opengroup.org/onlinepubs/9699919799/functions/open.html . That is a problem on Windows systems as Windows no longer supports POSIX.

I have not examined to find out if Windows supports the mode. MacOS and Linux potentially could, but Mathworks would have to specifically rewrite the code to use non-portable functions because it is not an available mode using portable functions.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

KSSV
KSSV 2021년 8월 4일
Read the documentation of fopen, there are multiple options present.
look for fopen with 'a+'. Also have a look on the function exist.
  댓글 수: 4
埃博拉酱
埃博拉酱 2021년 8월 4일
I have read the documentation and found no options that exactly match. That's why I ask here. What I'm expecting is clearly written in the question: If the file exists, open it for reading and writing, but don't discard existing content or append; else, create it.
Walter Roberson
Walter Roberson 2021년 8월 4일
편집: Walter Roberson 2021년 8월 6일

MATLAB does not provide that combination of open permissions.

C's fopen() does not support that combination https://pubs.opengroup.org/onlinepubs/9699919799/functions/fopen.html and it has to instead be done through a C open() call followed by a call to upgrade the resulting file descriptor into a file*

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Calendar에 대해 자세히 알아보기

태그

제품


릴리스

R2021a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by