(file_path, filename, content )
| 50 | return filename |
| 51 | |
| 52 | def write_file_response(file_path, filename, content ): |
| 53 | create_output_directory_if_not_exists() |
| 54 | |
| 55 | fullpath = file_path + filename |
| 56 | with open(fullpath, 'wb') as file: |
| 57 | file.write(content) |
| 58 | return fullpath |
no test coverage detected