blob: 1eaa918a2a785f0fa9a91d27b33ffc33b4b0c52d [file] [log] [blame]
// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:io';
import 'package:http_parser/http_parser.dart';
import 'package:path/path.dart' as p;
import 'byte_stream.dart';
import 'multipart_file.dart';
Future<MultipartFile> multipartFileFromPath(String field, String filePath,
{String? filename, MediaType? contentType}) async {
filename ??= p.basename(filePath);
var file = File(filePath);
var length = await file.length();
var stream = ByteStream(file.openRead());
return MultipartFile(field, stream, length,
filename: filename, contentType: contentType);
}