| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/MySQL/MySQL Workbench 6.3 CE/python/site-packages/paramiko/ |
Upload File : |
�
2�Xc @ sb d Z d d l Z d d l m Z m Z d d l m Z d e f d � � YZ d d l m Z d S( s7
Abstraction of an SFTP file handle (for server mode).
i����N( t SFTP_OP_UNSUPPORTEDt SFTP_OK( t ClosingContextManagert
SFTPHandlec B sk e Z d Z d d � Z d � Z d � Z d � Z d � Z d � Z d � Z d � Z
d
� Z d � Z RS( s�
Abstract object representing a handle to an open file (or folder) in an
SFTP server implementation. Each handle has a string representation used
by the client to refer to the underlying file.
Server implementations can (and should) subclass SFTPHandle to implement
features of a file handle, like `stat` or `chattr`.
Instances of this class may be used as context managers.
i c C s( | | _ d | _ i | _ d | _ d S( s
Create a new file handle representing a local file being served over
SFTP. If ``flags`` is passed in, it's used to determine if the file
is open in append mode.
:param int flags: optional flags as passed to `.SFTPServerInterface.open`
N( t _SFTPHandle__flagst Nonet _SFTPHandle__namet _SFTPHandle__filest _SFTPHandle__tell( t selft flags( ( sZ C:\Program Files\MySQL\MySQL Workbench 6.3 CE/python/site-packages\paramiko\sftp_handle.pyt __init__'