1
我想檢查一個遠程文件是否可寫或使用paramiko。 我當前的代碼是如何使用python Paramiko(SSHClient)檢查遠程文件是否可寫?
from paramiko.ssh_exception import SSHException, BadHostKeyException
import paramiko
import sys
from optparse import OptionParser
import os
stdin, stdout, stderr = self.__econnection.exec_command('bash');
stdin.write('if [ -w "%s" ];'%(temp_path))
stdin.write("then echo True;");
stdin.write("else echo False;");
stdin.write("fi;");
stdin.flush();
但是一旦我執行這些方針,外殼只是卡住,我不得不關閉外殼。 請幫助..
做一個簡單的'ls'工作? – 2011-02-24 09:33:19
yes ls正常工作 – tejzpr 2011-02-24 09:38:26
請寫下你的'import',以便我們查看它的文檔。 – 2011-02-24 10:31:23