“Flutter Delete File” Ответ

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;
        }
      }
Concerned Chimpanzee

Удалить документ трепетание

Firestore.instance.collection("chats").document("ROOM_1")  
    .collection("messages").document(snapshot.data.documents[index]["id"])
    .delete();
Obedient Ox

Справочник по удалению Flutter

import 'dart:io';

void main() {
    final dir = Directory(dirPath);
    dir.deleteSync(recursive: true);
}
Concerned Chimpanzee

Ответы похожие на “Flutter Delete File”

Вопросы похожие на “Flutter Delete File”

Больше похожих ответов на “Flutter Delete File” по Dart

Смотреть популярные ответы по языку

Смотреть другие языки программирования