使用 Node.js 从远程文件系统检索文件列表

发布于 2024-11-25 03:17:08 字数 262 浏览 0 评论 0 原文

是否可以使用 Node.js 检索远程文件系统的目录列表。我知道如何使用 readdir(...) 或 readdirSync(...) 在本地执行此操作,但是我可以使用这些方法返回远程文件列表,尤其是来自 http 或 ftp 服务器的远程文件列表吗?

编辑: 我想在 webOS 中执行此操作,因此我似乎仅限于支持的 API。我可能需要执行一些真正的循环方法,例如使用一个脚本来创建一个包含文件夹中文件列表的文件,然后访问该文件。所以我想这会带来第二个问题,我可以从本地脚本触发远程脚本吗?

Is it possible to retrieve a directory listing of a remote file-system using Node.js. I know how to do it locally using readdir(...) or readdirSync(...) but can I use those methods to return a list of remote files especially from a http or ftp server?

EDIT:
I want to do this in webOS so I'm limited to the supported API's it seems. I may have to do some real round-a-bout method like have a script that creates a file that contains a list of files in the folder and just accessing that. So I guess that brings up a second question could I fire a remote script from a local script?

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

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

发布评论

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

评论(2

冷默言语 2024-12-02 03:17:08

您可能需要 jsDav节点 ftp

You may want jsDav and node-ftp.

烟雨凡馨 2024-12-02 03:17:08

当然。您可以为节点找到一个 ftp 客户端,然后如果您的服务器有一个 ftp 服务器,您就可以与其交互。

以下是您如何获得对远程服务器的真正文件系统访问权限

如果您对尝试与之交互的远程计算机具有 root 访问权限,那么这应该是可能的。否则,不行。

我对所有这些并不是非常熟悉,但是您需要执行以下操作:

  1. 配置网络文件系统服务器(类似于 )在您的远程计算机上。
  2. 在运行节点的本地计算机上设置 NFS 客户端并挂载网络文件系统。
  3. 那么我认为,您应该能够使用节点文件系统库来浏览本地安装的网络文件系统,就像使用普通文件系统一样。

Sure. You could find an ftp client for node, then if your server has an ftp server going you can just interact with it.

The following is how you might go about getting real filesystem access to a remote server

If you have root access to the remote machine you are trying to interact with, yes it should be possible. Otherwise, no.

I am not super familiar with all of this, but you will need to do something along the lines of:

  1. Configure a Network File System server (something like this) on your remote machine.
  2. Set up an NFS client on your local machine where node is being run and mount the network file system.
  3. Then i think, you should be able to use the node filesystem library to browse the network file system mounted locally as you would with the normal file system.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文