megfile.sftp_path module
- class megfile.sftp_path.SftpPath(path: str | BasePath | PathLike, *other_paths: str | BasePath | PathLike)[source]
Bases:
URIPath
sftp protocol
- uri format:
- absolute path
sftp://[username[:password]@]hostname[:port]//file_path
- relative path
sftp://[username[:password]@]hostname[:port]/file_path
- absolute() SftpPath [source]
Make the path absolute, without normalization or resolving symlinks. Returns a new path object
- chmod(mode: int, follow_symlinks: bool = True)[source]
Change the file mode and permissions, like os.chmod().
- Parameters:
mode – the file mode you want to change
followlinks – Ignore this parameter, just for compatibility
- copy(dst_path: str | BasePath | PathLike, callback: Callable[[int], None] | None = None, followlinks: bool = False, overwrite: bool = True)[source]
Copy the file to the given destination path.
- Parameters:
dst_path – The destination path to copy the file to.
callback – An optional callback function that takes an integer parameter and is called periodically during the copy operation to report the number of bytes copied.
followlinks – Whether to follow symbolic links when copying directories.
- Raises:
IsADirectoryError – If the source is a directory.
OSError – If there is an error copying the file.
- exists(followlinks: bool = False) bool [source]
Test if the path exists
- Parameters:
followlinks – False if regard symlink as file, else True
- Returns:
True if the path exists, else False
- getmtime(follow_symlinks: bool = False) float [source]
Get last-modified time of the file on the given path (in Unix timestamp format).
If the path is an existent directory, return the latest modified time of all file in it.
- Returns:
last-modified time
- getsize(follow_symlinks: bool = False) int [source]
Get file size on the given file path (in bytes).
If the path in a directory, return the sum of all file size in it, including file in subdirectories (if exist).
The result excludes the size of directory itself. In other words, return 0 Byte on an empty directory path.
- Returns:
File size
- glob(pattern, recursive: bool = True, missing_ok: bool = True) List[SftpPath] [source]
Return path list in ascending alphabetical order, in which path matches glob pattern
If doesn’t match any path, return empty list Notice:
glob.glob
in standard library returns [‘a/’] instead of empty list when pathname is like a/**, recursive is True and directory ‘a’ doesn’t exist. fs_glob behaves likeglob.glob
in standard library under such circumstance.No guarantee that each path in result is different, which means: Assume there exists a path /a/b/c/b/d.txt use path pattern like /**/b/**/*.txt to glob, the path above will be returned twice
** will match any matched file, directory, symlink and ‘’ by default, when recursive is True
fs_glob returns same as glob.glob(pathname, recursive=True) in ascending alphabetical order.
Hidden files (filename stars with ‘.’) will not be found in the result
- Parameters:
pattern – Glob the given relative pattern in the directory represented by this path
recursive – If False, ** will not search directory recursively
missing_ok – If False and target path doesn’t match any file, raise FileNotFoundError
- Returns:
A list contains paths match pathname
- glob_stat(pattern, recursive: bool = True, missing_ok: bool = True) Iterator[FileEntry] [source]
Return a list contains tuples of path and file stat, in ascending alphabetical order, in which path matches glob pattern
If doesn’t match any path, return empty list Notice:
glob.glob
in standard library returns [‘a/’] instead of empty list when pathname is like a/**, recursive is True and directory ‘a’ doesn’t exist. sftp_glob behaves likeglob.glob
in standard library under such circumstance.No guarantee that each path in result is different, which means: Assume there exists a path /a/b/c/b/d.txt use path pattern like /**/b/**/*.txt to glob, the path above will be returned twice
** will match any matched file, directory, symlink and ‘’ by default, when recursive is True
fs_glob returns same as glob.glob(pathname, recursive=True) in ascending alphabetical order.
Hidden files (filename stars with ‘.’) will not be found in the result
- Parameters:
pattern – Glob the given relative pattern in the directory represented by this path
recursive – If False, ** will not search directory recursively
missing_ok – If False and target path doesn’t match any file, raise FileNotFoundError
- Returns:
A list contains tuples of path and file stat, in which paths match pathname
- iglob(pattern, recursive: bool = True, missing_ok: bool = True) Iterator[SftpPath] [source]
Return path iterator in ascending alphabetical order, in which path matches glob pattern
If doesn’t match any path, return empty list Notice:
glob.glob
in standard library returns [‘a/’] instead of empty list when pathname is like a/**, recursive is True and directory ‘a’ doesn’t exist. fs_glob behaves likeglob.glob
in standard library under such circumstance.No guarantee that each path in result is different, which means: Assume there exists a path /a/b/c/b/d.txt use path pattern like /**/b/**/*.txt to glob, the path above will be returned twice
** will match any matched file, directory, symlink and ‘’ by default, when recursive is True
fs_glob returns same as glob.glob(pathname, recursive=True) in ascending alphabetical order.
Hidden files (filename stars with ‘.’) will not be found in the result
- Parameters:
pattern – Glob the given relative pattern in the directory represented by this path
recursive – If False, ** will not search directory recursively
missing_ok – If False and target path doesn’t match any file, raise FileNotFoundError
- Returns:
An iterator contains paths match pathname
- is_dir(followlinks: bool = False) bool [source]
Test if a path is directory
Note
The difference between this function and
os.path.isdir
is that this function regard symlink as file- Parameters:
followlinks – False if regard symlink as file, else True
- Returns:
True if the path is a directory, else False
- is_file(followlinks: bool = False) bool [source]
Test if a path is file
Note
The difference between this function and
os.path.isfile
is that this function regard symlink as file- Parameters:
followlinks – False if regard symlink as file, else True
- Returns:
True if the path is a file, else False
- is_symlink() bool [source]
Test whether a path is a symbolic link
- Returns:
If path is a symbolic link return True, else False
- Return type:
bool
- iterdir() Iterator[SftpPath] [source]
Get all contents of given sftp path. The result is in ascending alphabetical order.
- Returns:
All contents have in the path in ascending alphabetical order
- listdir() List[str] [source]
Get all contents of given sftp path. The result is in ascending alphabetical order.
- Returns:
All contents have in the path in ascending alphabetical order
- load() BinaryIO [source]
Read all content on specified path and write into memory
User should close the BinaryIO manually
- Returns:
Binary stream
- md5(recalculate: bool = False, followlinks: bool = True)[source]
Calculate the md5 value of the file
- Parameters:
recalculate – Ignore this parameter, just for compatibility
followlinks – Ignore this parameter, just for compatibility
returns: md5 of file
- mkdir(mode=511, parents: bool = False, exist_ok: bool = False)[source]
make a directory on sftp, including parent directory. If there exists a file on the path, raise FileExistsError
- Parameters:
mode – If mode is given, it is combined with the process’ umask value to determine the file mode and access flags.
parents – If parents is true, any missing parents of this path are created as needed; If parents is false (the default), a missing parent raises FileNotFoundError.
exist_ok – If False and target directory exists, raise FileExistsError
- Raises:
FileExistsError
- open(mode: str = 'r', buffering=-1, encoding: str | None = None, errors: str | None = None, **kwargs) IO [source]
Open a file on the path.
- Parameters:
mode – Mode to open file
buffering – buffering is an optional integer used to set the buffering policy.
encoding – encoding is the name of the encoding used to decode or encode the file. This should only be used in text mode.
errors – errors is an optional string that specifies how encoding and decoding errors are to be handled—this cannot be used in binary mode.
- Returns:
File-Like object
- property parts: Tuple[str, ...]
A tuple giving access to the path’s various components
- protocol = 'sftp'
- readlink() SftpPath [source]
Return a SftpPath instance representing the path to which the symbolic link points.
- remove(missing_ok: bool = False) None [source]
Remove the file or directory on sftp
- Parameters:
missing_ok – if False and target file/directory not exists, raise FileNotFoundError
- rename(dst_path: str | BasePath | PathLike, overwrite: bool = True) SftpPath [source]
rename file on sftp
- Parameters:
dst_path – Given destination path
overwrite – whether or not overwrite file when exists
- replace(dst_path: str | BasePath | PathLike, overwrite: bool = True) SftpPath [source]
move file on sftp
- Parameters:
dst_path – Given destination path
overwrite – whether or not overwrite file when exists
- resolve(strict=False) SftpPath [source]
Equal to sftp_realpath
- Parameters:
strict – Ignore this parameter, just for compatibility
- Returns:
Return the canonical path of the specified filename, eliminating any symbolic links encountered in the path.
- Return type:
- save(file_object: BinaryIO)[source]
Write the opened binary stream to path If parent directory of path doesn’t exist, it will be created.
- Parameters:
file_object – stream to be read
- scan(missing_ok: bool = True, followlinks: bool = False) Iterator[str] [source]
Iteratively traverse only files in given directory, in alphabetical order. Every iteration on generator yields a path string.
If path is a file path, yields the file only If path is a non-existent path, return an empty generator If path is a bucket path, return all file paths in the bucket
- Parameters:
missing_ok – If False and there’s no file in the directory, raise FileNotFoundError
- Returns:
A file path generator
- scan_stat(missing_ok: bool = True, followlinks: bool = False) Iterator[FileEntry] [source]
Iteratively traverse only files in given directory, in alphabetical order. Every iteration on generator yields a tuple of path string and file stat
- Parameters:
missing_ok – If False and there’s no file in the directory, raise FileNotFoundError
- Returns:
A file path generator
- scandir() Iterator[FileEntry] [source]
Get all content of given file path.
- Returns:
An iterator contains all contents have prefix path
- stat(follow_symlinks=True) StatResult [source]
Get StatResult of file on sftp, including file size and mtime, referring to fs_getsize and fs_getmtime
- Returns:
StatResult
- symlink(dst_path: str | BasePath | PathLike) None [source]
Create a symbolic link pointing to src_path named dst_path.
- Parameters:
dst_path – Destination path
- sync(dst_path: str | BasePath | PathLike, followlinks: bool = False, force: bool = False, overwrite: bool = True)[source]
Copy file/directory on src_url to dst_url
- Parameters:
dst_url – Given destination path
followlinks – False if regard symlink as file, else True
force – Sync file forcible, do not ignore same files, priority is higher than ‘overwrite’, default is False
overwrite – whether or not overwrite file when exists, default is True
- unlink(missing_ok: bool = False) None [source]
Remove the file on sftp
- Parameters:
missing_ok – if False and target file not exists, raise FileNotFoundError
- utime(atime: float | int, mtime: float | int) None [source]
Set the access and modified times of the file specified by path.
- Parameters:
atime (Union[float, int]) – The access time to be set.
mtime (Union[float, int]) – The modification time to be set.
- Returns:
None
- walk(followlinks: bool = False) Iterator[Tuple[str, List[str], List[str]]] [source]
Generate the file names in a directory tree by walking the tree top-down. For each directory in the tree rooted at directory path (including path itself), it yields a 3-tuple (root, dirs, files).
root: a string of current path
dirs: name list of subdirectories (excluding ‘.’ and ‘..’ if they exist) in ‘root’. The list is sorted by ascending alphabetical order
files: name list of non-directory files (link is regarded as file) in ‘root’. The list is sorted by ascending alphabetical order
If path not exists, or path is a file (link is regarded as file), return an empty generator
Note
Be aware that setting
followlinks
to True can lead to infinite recursion if a link points to a parent directory of itself. fs_walk() does not keep track of the directories it visited already.- Parameters:
followlinks – False if regard symlink as file, else True
- Returns:
A 3-tuple generator