Mac OS 中的 Java 文件锁定

发布于 2024-10-31 18:32:46 字数 232 浏览 0 评论 0原文

使用 java.nio 包的文件锁定在 Windows 操作系统中工作得很好,但是 同一程序在 Mac 操作系统上无法正常工作。

我正在尝试删除 Windows 中锁定的文件,但它不会删除该文件。 但我试图在 Mac 操作系统中实现同样的目标,即使文件被锁定 或由 FileWriter/FileOutputStream 打开,其删除文件。

对于这个问题有什么建议吗? 文件锁实现中存在错误吗?

谢谢。

File locking using java.nio package works fine with Windows OS but
same program is not working properly with Mac OS.

I am trying to delete the locked file in Windows where its not deleting the file.
But same thing i am trying to achieve in Mac OS where even though file is locked
or opened by FileWriter/FileOutputStream, its deleting the file.

Any suggestion for this issue ?
Is it bug in File lock implementation ?

Thanks.

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

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

发布评论

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

评论(1

魂归处 2024-11-07 18:32:46

这不是一个错误(除非您称 Windows 为一个错误)

锁在 *nix 系统上是建议。除了先检查文件是否被锁定之外,没有什么可以阻止您删除锁定的文件。

在 Windows 中,它有点相同,除了系统命令检查锁和 IIRC 打开文件的默认模式是使用独占锁。

It's not a bug (unless you call Windows a bug)

Locks are advisory on *nix systems. Nothing prevents you from deleting a locked file except checking to see if it's locked first.

In windows it's sort of the same, except the system commands check for locks and IIRC the default mode for opening a file is with an exclusive lock.

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