The Wayback Machine - https://web.archive.org/web/20220702205653/https://github.com/topics/download-manager
Skip to content
#

download-manager

Here are 341 public repositories matching this topic...

FileCentipede
chenhucxc
chenhucxc commented Mar 26, 2022
/**
     * Create a file using java.io API
     */
    private File createFileInAppSpecificDir(String filename, String savedDir) {
        File newFile = new File(savedDir, filename);
        try {
            boolean rs = newFile.createNewFile();
            if (rs) {
                return newFile;
            } else {
                logError("It looks like you are trying to 
bug good first issue
rubit0
rubit0 commented Mar 29, 2022

I have been using this library in a Unity project and it works great but it does not work in Unity IL2CPP builds (specially iOS).
The issue is that System.IO.FileSystem.DriveInfo is not supported, setting CheckDiskSizeBeforeDownload to false fixes this.

I think it would be better to have that set by default to false.

help wanted good first issue

Improve this page

Add a description, image, and links to the download-manager topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the download-manager topic, visit your repo's landing page and select "manage topics."

Learn more