The standard predefined MACRO __FILE__ available in C shows the full path to the file. Is there any way to short the path? I mean instead of
/full/path/to/file.c
I see
to/file.c
or
file.c
|
Try
For Windows use '\\' instead of '/'. |
|||||||||||||||||
|
|
There's no compile time way to do this. Obviously you can do it at runtime using the C runtime, as some of the other answers have demonstrated, but at compile time, when the pre-procesor kicks in, you're out of luck. |
|||||||||||||
|
|
Since you are using GCC, you can take advantage of
and then control how you want to display the filename by changing the source file representation (full path/relative path/basename) at compilation time. |
|||||||||||||
|
|
A slight variation on what @red1ynx proposed would to be create the following macro:
In each of your .c(pp) files add:
Then you can refer to
This means the construction is performed once per .c(pp) file instead of each time the macro is referenced. It is limited to use only from .c(pp) files and would be unusable from header files. |
|||||
|
|
Use the basename() function, or, if you are on Windows, _splitpath().
Also try |
|||||||||||
|
|
just hope to improve FILE macro a bit:
this catches / and \, like Czarek Tomczak requested, and this works great in my mixed environment. |
||||
|
|
Here's a tip if you're using cmake. From: http://public.kitware.com/pipermail/cmake/2013-January/053117.html I'm copying the tip so it's all on this page:
If you're using GNU make, I see no reason you couldn't extend this to your own makefiles. For example, you might have a line like this:
where Then use |
|||
|
|
__FILE__contains by changing the filename you pass on the command line. So instead ofgcc /full/path/to/file.c, trycd /full/path/to; gcc file.c; cd -;. Of course there's a bit more to it than that if you're relying on gcc's current directory for the include path or output file location. Edit: the gcc docs suggest that it's the full path, not the input file name argument, but that's not what I'm seeing for gcc 4.5.3 on Cygwin. So you may as well try it on Linux and see. – Steve Jessop Dec 13 '11 at 11:44