gpt4 book ai didi

python - 使用smb协议(protocol)python3访问服务器上的远程文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:45:56 25 4
gpt4 key购买 nike

我有一个带有一些文件的远程服务器。

smb://ftpsrv/public/

我可以在那里被授权为匿名用户。在 Java 中,我可以简单地编写以下代码:

SmbFile root = new SmbFile(SMB_ROOT);

并获得处理内部文件的能力(这就是我所需要的,一行!),但我找不到如何在 Python 3 中管理这个任务,有很多资源,但我认为它们与我的问题无关,因为它们通常是为 Python 2 和其他旧方法量身定制的。有没有一些简单的方法,类似于上面的Java代码?或者有人可以提供一个真正有效的解决方案,例如,如果我想访问 smb://ftpsrv/public/ 文件夹中的文件 fgg.txt 。真的有一个方便的库来解决这个问题吗?

例如现场:

import tempfile
from smb.SMBConnection import SMBConnection

# There will be some mechanism to capture userID, password, client_machine_name, server_name and server_ip
# client_machine_name can be an arbitary ASCII string
# server_name should match the remote machine name, or else the connection will be rejected
conn = SMBConnection(userID, password, client_machine_name, server_name, use_ntlm_v2 = True)
assert conn.connect(server_ip, 139)

file_obj = tempfile.NamedTemporaryFile()
file_attributes, filesize = conn.retrieveFile('smbtest', '/rfc1001.txt', file_obj)

# Retrieved file contents are inside file_obj
# Do what you need with the file_obj and then close it
# Note that the file obj is positioned at the end-of-file,
# so you might need to perform a file_obj.seek() if you need
# to read from the beginning
file_obj.close()

我是否真的需要提供所有这些详细信息:conn = SMBConnection(userID, password, client_machine_name, server_name, use_ntlm_v2 = True)

最佳答案

在 Python 3 中使用 urllib 和 pysmb 打开文件的简单示例

import urllib
from smb.SMBHandler import SMBHandler
opener = urllib.request.build_opener(SMBHandler)
fh = opener.open('smb://host/share/file.txt')
data = fh.read()
fh.close()

我还没有准备好用于测试的匿名 SMB 共享,但这段代码应该可以工作。
urllib2 是 python 2 包,在 python 3 中它被重命名为 urllib 并且一些东西被移动了。

关于python - 使用smb协议(protocol)python3访问服务器上的远程文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49493699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com