我有两个服务器A和B.我想发送一个图像文件,从服务器A发送到另一个服务器B.但是在服务器A可以发送文件之前我想检查一个类似的文件存在于服务器B中。我尝试使用os.path.exists()并且它不起作用。
print os.path.exists('ubuntu@serverB.com:b.jpeg')
即使我在服务器B上放了一个确切的文件,结果也会返回false。我不确定这是我的语法错误还是有更好的解决方案来解决这个问题。谢谢
答案 0 :(得分:17)
os.path
函数仅适用于同一台计算机上的文件。它们在路径上运行,ubuntu@serverB.com:b.jpeg
不是路径。
为了实现这一目标,您需要远程执行脚本。这样的东西通常会起作用:
def exists_remote(host, path):
"""Test if a file exists at path on a host accessible with SSH."""
status = subprocess.call(
['ssh', host, 'test -f {}'.format(pipes.quote(path))])
if status == 0:
return True
if status == 1:
return False
raise Exception('SSH failed')
因此,如果文件存在于另一台服务器上,您可以获得:
if exists_remote('ubuntu@serverB.com', 'b.jpeg'):
# it exists...
请注意,这可能令人难以置信地慢,甚至可能超过100毫秒。