当我在创建这样的文件夹的服务器上运行 Python 应用程序时
if not os.path.exists(destinationPath):
os.makedirs(destinationPath, 777)
我有一个客户端应用程序(也在 Python 中)使用Paramiko 模块通过 SFTP 将文件上传到服务器。如果需要,客户端还会像这样在服务器上创建文件夹
makeCommand = 'mkdir -p "' + remotePath + '"'
ssh.exec_command(makeCommand)
这很好用。我遇到的问题是,如果服务器应用程序创建一个文件夹,则客户端无权访问该文件夹(无法上传到该文件夹或创建子文件夹)。我收到以下错误
line 104, in upload
ftMan.sftp.put(localFile, remoteFile)
File "build/bdist.macosx-10.8-intel/egg/paramiko/sftp_client.py", line 565, in put
File "build/bdist.macosx-10.8-intel/egg/paramiko/sftp_client.py", line 245, in open
File "build/bdist.macosx-10.8-intel/egg/paramiko/sftp_client.py", line 635, in _request
File "build/bdist.macosx-10.8-intel/egg/paramiko/sftp_client.py", line 682, in _read_response
File "build/bdist.macosx-10.8-intel/egg/paramiko/sftp_client.py", line 710, in _convert_status
IOError: [Errno 13] Permission denied
如何让每个应用程序创建另一个也可以使用的文件夹?我已经尝试设置权限(如您在上面服务器的第一段代码中所见),但这似乎不起作用?