Linux 下的程序与普通目录一样可见

发布于 2024-08-27 21:26:55 字数 194 浏览 6 评论 0 原文

我正在尝试编写程序以用作可编程目录,换句话说:用户或其他系统打开该目录并读/写文件或目录。我尝试创建程序来缓存内存中最常用的文件(减少 HDD 的 I/O),但现在我不知道如何实现这一点。可能有一些关于此的文档,但我找不到它们。我知道有 FUSE、NFS 等,但阅读它们的源代码相当困难。如果有人有关于 C 语言实现的信息,我将非常感激。

对不起我的英语..

I'm trying to write program to work as programmable directory, in other words: User, or other systems open that directory and read/write files or dirs. I try to create program to cache most used files in memory (less I/O to HDD), but right now I don't know how to achive that. There are probably some docs about this but I can't find them. I know that there is FUSE, NFS and others, but reading their source is quite difficult. If any one has info about implementation in C lang I'll be very grateful.

Sorry for my English..

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

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

发布评论

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

评论(4

零時差 2024-09-03 21:26:55

FUSE 有一个 C 接口 - 看看他们的 Hello World 示例

FUSE has a C interface - take a look at their Hello World example.

世态炎凉 2024-09-03 21:26:55

如果您想要一个简单的实现,请尝试Python的FUSE库。可以在此处找到快速教程。

If you want a simple implementation, try Python's FUSE library. A quick tutorial can be found here.

失而复得 2024-09-03 21:26:55

您可以查看 GIO 库 — 它是 GTK 的一部分,但可以单独使用。该文档非常详尽,如果您需要进行一些快速原型设计,可以使用 PyGTK GIO 绑定,在返回并用 C 编写之前进行混乱。

它已根据 LGPL 获得许可。

You could have a look at the GIO library — it's part of GTK, but can be used separately. The documentation is pretty thorough, and if you need to do some quick prototyping you can use the PyGTK GIO bindings to mess around before going back and writing it in C.

It's licensed under the LGPL.

如痴如狂 2024-09-03 21:26:55

如果您发现用 Python 编码更容易,可以使用 cx_Freeze 创建编译程序。

If you find it easier to code in Python, it's possible to create a compiled program using cx_Freeze.

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