skip to Main Content

I just want to access, download, and upload files on AWS EFS.

What packages need to be installed or what is the code for it if I’m using .NET?

2

Answers


  1. Chosen as BEST ANSWER

    I believe we can utilize the file system (System.IO) to upload and read files from AWS EFS in Net.


  2. Amazon EFS is an elastic NFS file system i.e. network drive as a service.

    The file system needs to be mounted on e.g. EC2 instances, a Lambda function, ECS, EKS or locally before you can access it via the NFSv4 protocol.

    You can’t just upload files to it via any of the AWS SDKs, including the AWS SDK for .NET. The AWSSDK.ElasticFileSystem is a control-plane package for accessing the EFS service, not for interacting with the EFS drives themselves.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search