LoginSignup
5
3

More than 3 years have passed since last update.

FlutterでImage_pickerから取得したデータのファイル名を取得する

Posted at

import 'package:path/path.dart' as path;

class VideoRepository {
  @override
  Future uploadVideo(String uid, String roomId, File videoFile) async {
    // これでとれる
    String name = path.basename(videoFile.path);
  }
}
5
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
3