我正在运行此代码以检查此目录是否存在于远程计算机上,但此代码正在检查本地计算机上的目录。如何验证远程计算机上的目录?
rom fabric.api import run, sudo, env
import os
env.hosts = ['remote_server']
env.user = 'ubuntu'
env.key_filename = '/home/ubuntu/ubuntu16-multi.pem'
def Directory_Check():
DIR_1="/home/ubuntu/test-dir"
if os.path.exists(DIR_1):
print "Directory Exist!"
else:
print "Directory Does Not Exist!"
答案 0 :(得分:12)
您可以使用files.exists
function。
def check_exists(filename):
from fabric.contrib import files
if files.exists(filename):
print('%s exists!' % filename)
并使用execute
调用它。
def main():
execute(check_exists, '/path/to/file/on/remote')
答案 1 :(得分:7)
为什么不只是keep it simply stupid
:
from fabric.contrib.files import exists
def foo():
if exists('/path/to/remote/file', use_sudo=True):
# do something...
答案 2 :(得分:1)
尽管接受的答案对结构1版有效,但对于在结构2上同时寻找相同事物但碰到该线程的人,则适用于结构2:
将exists
中的 fabric.contrib.files
方法更改为patchwork.files
并进行了小的签名更改,因此您可以像这样使用它:
from fabric2 import Connection
from patchwork.files import exists
conn = Connection('host')
if exists(conn, SOME_REMOTE_DIR):
do_something()