I am using pysftp connection using walktree()
method to list all files as below
with pysftp.Connection(domain, username=USER,
password=PWD, port=port,
cnopts=cnopts) as sftp:
# call back method to list the files for the directory found in walktree
def dir_found_list_files(path):
if path:
files = sftp.listdir_attr(path)
for file in files:
if 'r' in file.longname[:4]:
filelist.append(path+'/'+file.filename)
# call back method when file found in walktree
def file_found(path):
pass
# call back method when unknown found in walktree
def unknown_file(path):
pass
# sftp walk tree to list files
sftp.walktree("/", file_found, dir_found_list_files, unknown_file, recurse=True)
This part works fine. But when any of the folder does not have the permission to read, the walktree
method raises the permission exception.
How can I ignore the the access denied folder and continue with walktree
for accessible folders?