Answers for "flutter delete file"

1

flutter delete file

Future<String> get _localPath async {
    final directory = await getApplicationDocumentsDirectory();

    return directory.path;
  }

  Future<File> get _localFile async {
    final path = await _localPath;
    print('path ${path}');
    return File('$path/counter.txt');
  }

  Future<int> deleteFile() async {
        try {
          final file = await _localFile;

          await file.delete();
        } catch (e) {
          return 0;
        }
      }
Posted by: Guest on June-30-2020
0

flutter delete directory

import 'dart:io';

void main() {
    final dir = Directory(dirPath);
    dir.deleteSync(recursive: true);
}
Posted by: Guest on June-30-2020
0

delete a document flutter

Firestore.instance.collection("chats").document("ROOM_1")  
    .collection("messages").document(snapshot.data.documents[index]["id"])
    .delete();
Posted by: Guest on August-30-2021

Code answers related to "Dart"

Browse Popular Code Answers by Language