Delete() public method

Deletes the from S3.
public Delete ( ) : void
return void
 public void DeleteFile(string path)
 {
     path = CleanPath(path);
     var file = new S3FileInfo(_client, _amazonS3StorageConfiguration.AWSFileBucket, path);
     file.Delete();
     
 }