Menu
Choose a product
Viewing: v1.7.x (latest)
Find another version
Scroll for more
Open source
file( data, [filename], [contentType] )
Create a file object that is used for building Multipart requests (file uploads).
| Parameter | Type | Description |
|---|---|---|
| data | string / Array / ArrayBuffer | File data as string, array of numbers, or an ArrayBuffer object. |
| filename | string | The filename to specify for this field (or “part”) of the multipart request. |
| contentType | string | The content type to specify for this field (or “part”) of the multipart request. |
Returns
| Type | Description |
|---|---|
| FileData | A FileData object. |
Example
JavaScript
JavaScript
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);
}Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.