Я пытался загрузить файл с помощью загрузчика флаттера, загрузка начинается, но не удается.
мой код:
Directory directory = await getExternalStorageDirectory();
Directory downloadDirectory = await DownloadsPathProvider.downloadsDirectory;
File counterFile = File('${directory.path}/counter.txt');
await counterFile.writeAsString("text test");
String contents = await counterFile.readAsString();
print(contents);
print(counterFile.path);
await FlutterDownloader.enqueue(
url: directory.path,
fileName: "counter.txt",
savedDir: downloadDirectory.path,
showNotification: true,
openFileFromNotification: true,
);