Search:

Type: Posts; User: b1nd3r

Search: Search took 0.00 seconds.

  1. Replies
    3
    Views
    16,119

    using diferent prefix with make install

    howdy.

    Can I make "make install" use someother prefix (different from the one set with configure --prefix) just to install the files without messing with configure --prefix ?



    [ ]'s
  2. Replies
    2
    Views
    7,765

    Hi cas, well, this application is supposed to...

    Hi cas,

    well, this application is supposed to be used only on Linux but is good to know that isn't an standard I have a function using stat made just to see if the path is a directory, maybe...
  3. well, isn't exactly an error, is a warning so the...

    well, isn't exactly an error, is a warning so the compilation must have finish ok.

    Anyway, didn't look at the code, just pointing a detail about your error message.
  4. Replies
    2
    Views
    7,765

    Recursively list files inside dir

    Hey folks I'm stuck with a recursion problem here, I need to create a hash for each file inside some directory, the problem is when it comes to other directories inside, I need the files inside them...
  5. Replies
    2
    Views
    9,902

    nice, thanks! [ ]'s regards

    nice, thanks!


    [ ]'s
    regards
  6. Replies
    21
    Views
    4,483

    if (!c) .... is equal to: if (c == 0) .... ...

    if (!c) ....
    is equal to:

    if (c == 0) ....

    "!" is a negation, it inverts the test, like if(!c) is the inverse of if(c)
    it's like to say if the variable is equal to 0 or false.

    btw, this...
  7. Replies
    2
    Views
    9,902

    Checking if char *path; is a valid directory.

    Hey,

    For what I saw in man stat(), opendir(char *dir_path); will return null if isn't a directory what it's trying to open, right? So should I use this to test for a valid directory on dir_path...
Results 1 to 7 of 7