In this section, you will find information and examples on how to manipulate the files associated with your application. Learn how to list, read, create, and delete files using the Client or the Application class for efficient resource administration of your application.
client.app_files_list
and app.files_list
return a list of FileInfo
objects.
client.read_app_file
and app.read_file
return a BytesIO
object.
client.create_app_file
and app.create_file
return a Response
object.
client.delete_app_file
and app.delete_file
return a Response
object.
client.move_app_file
and app.move_file
return a Response
object.