如何在C程序中删除文件?

发布于 2024-11-03 05:52:03 字数 327 浏览 1 评论 0原文

如何关闭文件并将其删除?

我有以下代码:

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

现在我想关闭 filePtr 并删除文件“fileName”。

我应该:

fclose(filePtr);
remove("fileName");

或者:

remove("fileName");
fclose(filePtr);

我先做什么重要吗?

谢谢!!

How do I close a file and remove it?

I have the following code:

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

Now I want to close filePtr and remove the file "fileName".

Should I:

fclose(filePtr);
remove("fileName");

Or:

remove("fileName");
fclose(filePtr);

Does it matter which I do first?

Thanks!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

っ左 2024-11-10 05:52:03

这取决于操作系统。在 *nix 上,删除打开的文件会使其保持打开状态并保留磁盘上的数据,但会从文件系统中删除文件名,并在关闭时实际删除该文件;某些其他操作系统可能根本不允许您删除打开的文件。因此,建议使用前者以获得最大的便携性。

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.

烟─花易冷 2024-11-10 05:52:03

fclose 然后unlink 更有意义。

It makes more sense to fclose and then unlink.

迷路的信 2024-11-10 05:52:03

正如 man unlink(2) 所说(对于 Unix 系统):

unlink()函数删除链接
由其目录中的路径命名,并且
减少文件的链接计数
链接引用了它。如果
减少链接数
文件为零,并且没有进程
打开文件,然后打开所有资源
与该文件关联的是
回收。如果一个或多个进程
在最后一个链接时打开文件
被删除了,链接也被删除了,但是
文件的删除被延迟
直到所有对它的引用都已完成
已关闭。

所以顺序根本不重要。

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.

七颜 2024-11-10 05:52:03

您不需要fopen文件来删除它。但是,在 Linux 中,如果您删除一个fopened文件,只有在关闭它之后它才会被删除。您仍然可以读取/写入它。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文