Giter Site home page Giter Site logo

Comments (3)

781flyingdutchman avatar 781flyingdutchman commented on August 11, 2024

As indicated in the readme, for compatibility with mobile platforms we cannot support absolute paths.

from background_downloader.

onism0106 avatar onism0106 commented on August 11, 2024

why not support the download directory? It's can be accessed on all platforms

from background_downloader.

781flyingdutchman avatar 781flyingdutchman commented on August 11, 2024

Hi, the download directory is supported, with an extra step. You need to download the file first (e.g. to the temporary directory) and then move it to shared storage. For example:

  final task = DownloadTask(url: 'https://www.google.com',
    filename: 'test.html',
    baseDirectory: BaseDirectory.temporary)
  final result = await FileDownloader().download(task);
  if (result.status == TaskStatus.complete) {
    final filePath =  await FileDownloader()
        .moveToSharedStorage(task, SharedStorage.downloads);
    // filePath is now the path to the file, or null if unsuccessful
  }

The reason for this two-step approach is that Downloads is not typically private to the app. The download and enqueue methods are designed to only download to the private app space. Moving a file to a shared storage location may require additional permissions, and is therefore handled as a separate step, so that we can keep the normal download functionality simple.

from background_downloader.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.