Tagged Questions
2
votes
2answers
362 views
C: realpath() without resolving symlinks?
I already read about realpath(), but is there a function that I can pass a base directory and a filename that would give me the following result without resolving symlinks or checking whether files ...
2
votes
2answers
387 views
casting issue with realpath function (c programming)
When I compile the following code:
#define _POSIX_C_SOURCE 200112L
#define _ISOC99_SOURCE
#define __EXTENSIONS__
#include <stdio.h>
#include <limits.h>
#include <stdlib.h>
int
...
2
votes
3answers
4k views
Example of realpath function (C Programming)
I'm looking for an example of how to use the realpath function in a C program. I can't seem to find one on the web or in any of my C programming books.
0
votes
4answers
120 views
How to get directory of a file which is called from command line argument?
For example, I am calling my executable in ubuntu:
./foo temp/game1.txt temp/game2 txt
I am using realpath() to find the path to the game1.txt.
Using it however will give me the full path including ...