No results for

Powered byAlgolia
⚠️ This documentation is outdated. Please visit grafana.com for the latest k6 documentation.📚

file( data, [filename], [contentType] )

Create a file object that is used for building Multipart requests (file uploads).

ParameterTypeDescription
datastring / Array / ArrayBufferFile data as string, array of numbers, or an ArrayBuffer object.
filenamestringThe filename to specify for this field (or "part") of the multipart request.
contentTypestringThe content type to specify for this field (or "part") of the multipart request.

Returns

TypeDescription
FileDataA FileData object.

Example

import { sleep } from 'k6';
import { md5 } from 'k6/crypto';
import http from 'k6/http';
const binFile = open('/path/to/file.bin', 'b');
export default function () {
const f = http.file(binFile, 'test.bin');
console.log(md5(f.data, 'hex'));
console.log(f.filename);
console.log(f.content_type);
}