How to remove a file in C program?

后端 未结 4 1126
礼貌的吻别
礼貌的吻别 2020-12-04 02:30

How do I close a file and remove it?

I have the following code:

FILE *filePtr = fopen(\"fileName\", \"w\");
...

Now I want to close

相关标签:
4条回答
  • 2020-12-04 03:02

    That is OS-dependent. On *nix, deleting an open file leaves it open and the data on disk, but removes the filename from the filesystem, and actually deletes the file on close; some other operating systems may not let you delete an open file at all. Therefore the former is recommended for maximum portability.

    0 讨论(0)
  • 2020-12-04 03:07

    As man unlink(2) says (for Unix systems) :

    The unlink() function removes the link named by path from its directory and decrements the link count of the file which was referenced by the link. If that decrement reduces the link count of the file to zero, and no process has the file open, then all resources associated with the file are reclaimed. If one or more process have the file open when the last link is removed, the link is removed, but the removal of the file is delayed until all references to it have been closed.

    So the order doesn't matter at all.

    0 讨论(0)
  • 2020-12-04 03:11

    You do not need to fopen a file to remove it. But, in linux, if you remove an fopened file, it will be deleted only after closing it. You can still read/write to it.

    0 讨论(0)
  • 2020-12-04 03:24

    It makes more sense to fclose and then unlink.

    0 讨论(0)
提交回复
热议问题