Coder Social home page Coder Social logo

Comments (7)

libetl avatar libetl commented on June 8, 2024

Hello,

Thanks for that feedback,
I will try to test that scenario.

from curl.

libetl avatar libetl commented on June 8, 2024

Hmm that is weird,

this unit test is green on my machine :

    @Test
    public void outputFileWithSpaces () {
        File file = new File("target/classes/downloaded Curl With WhiteSpaces");

        boolean fileDeleted = file.delete();
        LOGGER.log(Level.FINE, "output file deleted : " + fileDeleted);
        this.assertOk (this.curl ("-k -E src/test/resources/clients/libe/libe.pem -X GET -A 'toto' -H 'Accept: */*' -H 'Host: localhost' 'https://localhost:%d/public' -o 'target/classes/downloaded Curl With WhiteSpaces'"));
        Assert.assertTrue (new File ("target/classes/downloaded Curl With WhiteSpaces").exists ());
    }

from curl.

elzoughby avatar elzoughby commented on June 8, 2024

Hmm,
I do not know why that exception happens, but here is my use of the library :

private static String appDataDirectory;
static {

        // set nazel AppData directory path based on the user OS
        if(System.getProperty("os.name").toLowerCase().contains("win"))
            appDataDirectory = System.getenv("AppData").replaceAll("[/\\\\]$", "") +
                    System.getProperty("file.separator") + "nazel downloader";
        else if(System.getProperty("os.name").toLowerCase().contains("mac"))
            appDataDirectory = System.getProperty("user.home").replaceAll("[/\\\\]$", "") +
                    System.getProperty("file.separator") + "Library" + System.getProperty("file.separator") +
                    "Preferences" + System.getProperty("file.separator") + "nazel downloader";
        else
            appDataDirectory = System.getProperty("user.home").replaceAll("[/\\\\]$", "") +
                    System.getProperty("file.separator") + ".nazel Downloader";

    }


// Then somewhere in a method
Curl.curl("-L http://yt-dl.org/downloads/latest/youtube-dl -o " + APP_DATA_DIRECTORY + System.getProperty("file.separator") + "youtube-dl.tmp");

I tested this code on windows and linux, but with the same error.
Am I wrong in somthing?

from curl.

elzoughby avatar elzoughby commented on June 8, 2024

I have escaped from this error by using this workaround :

File tempFile = new File(APP_DATA_DIRECTORY + System.getProperty("file.separator") + "youtube-dl.tmp");
if(tempFile.exists())
        tempFile.delete();
tempFile.getParentFile().mkdirs();

FileOutputStream fileOutputStream = new FileOutputStream(tempFile);
HttpResponse response = Curl.curl().lUpperCase().run("http://yt-dl.org/downloads/latest/youtube-dl");
response.getEntity().writeTo(fileOutputStream);
fileOutputStream.close();

from curl.

libetl avatar libetl commented on June 8, 2024

Hello,

I think your forgot to surround the file name with simple quotes or double quotes.

" + APP_DATA_DIRECTORY + System.getProperty("file.separator") + "youtube-dl.tmp" =>
/home/user/directory with space/youtube-dl.tmp (failing)

whereas
'" + APP_DATA_DIRECTORY + System.getProperty("file.separator") + "youtube-dl.tmp'" =>
'/home/user/directory with space/youtube-dl.tmp' (working)

from curl.

libetl avatar libetl commented on June 8, 2024

Don't hesitate to reopen that one if you need more help.

from curl.

elzoughby avatar elzoughby commented on June 8, 2024

Ooh, you are right 👍
Thanks a lot.

from curl.

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.