AWS EFS rest API to manage file and folder of any filesystem

0

I'm working on research for Amazon EFS. What I figured out:

  • File system
  • Moute it with ec2 of Linux
  • mkdir file and share it among different EC2 instances.

What I can't find

  • how to work with files and folders in RestAPIs or in Postman
  • Even the handling of files is not given in the EFS SDK document

Could anyone please shed some light if it's possible to work with files like upload/download/list/archive with RestAPI or with SDK

preguntada hace un año844 visualizaciones
1 Respuesta
1

EFS is network file storage, so it is not possible to upload, download, list, or archive files via Rest API or other means.
The only way to do this is to mount and manipulate files from EC2, etc.
https://docs.aws.amazon.com/efs/latest/ug/whatisefs.html

profile picture
EXPERTO
respondido hace un año
  • If that is so, is it possible to work with files using code? Is any client library available?

  • If EFS is mounted with NFS, it would be possible to manipulate files using the code. For example, in Python, the "open()" function can be used to open and write files. The "os" module can also be used to delete files.

  • could you please provide me some documentation for the same or a more detailed version of it? It would be really helpful

  • The open() function is documented below. open() is a built-in Python function and can be used as is. https://docs.python.org/3/library/functions.html#open

    The following document is the documentation for the os module. The os.remove() function here can delete files. Incidentally, os.mkdir() and os.rmdir() can also be used to create and delete directories. https://docs.python.org/3/library/os.html

No has iniciado sesión. Iniciar sesión para publicar una respuesta.

Una buena respuesta responde claramente a la pregunta, proporciona comentarios constructivos y fomenta el crecimiento profesional en la persona que hace la pregunta.

Pautas para responder preguntas