Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question
1  
It would be really really great to find a preprocessor-only solution. I'm afraid that the suggestions based on string operations will execute at runtime. – cdleonard Dec 13 '11 at 11:26
3  
Since you're using gcc, I think you can change what __FILE__ contains by changing the filename you pass on the command line. So instead of gcc /full/path/to/file.c, try cd /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
@SteveJessop - you are EVERYWHERE with your knowledge! – Prof. Falken Dec 13 '11 at 12:22
GCC 4.5.1 (built for arm-none-eabi specifically) uses the exact text of the file name on its command line. In my case it was the IDE's fault for invoking GCC with all file names fully qualified instead of putting the current directory somewhere sensible (location of the project file, perhaps?) or configurable and using relative paths from there. I suspect a lot of IDEs do that (especially on Windows) out of some sort of discomfort related to explaining where the "current" directory really is for a GUI app. – RBerteig Sep 13 '12 at 21:03

7 Answers

up vote 20 down vote accepted

Try

#include <string.h>

#define FILE (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)

For Windows use '\\' instead of '/'.

share|improve this answer
1  
Leaving the middle bit of ?: empty is a compiler extension. I think you might as well write #define FILE (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__) – Steve Jessop Dec 13 '11 at 11:19
Yep, thank you! – red1ynx Dec 13 '11 at 11:22
What does "+ 1" do exactly? – mahmood Dec 13 '11 at 11:29
3  
/ is a valid path separator in Windows. – Hans Passant Dec 13 '11 at 11:56
1  
@AmigableClarkKant, no you can mix both separators in the same file name. – RBerteig Sep 13 '12 at 20:55
show 6 more comments

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.

share|improve this answer
the strrchr answer could plausibly be computed at compile-time, although of course still not by the preprocessor. I don't know whether gcc actually does it, I haven't checked, but I'm pretty sure that it does compute strlen of string literals at compile-time. – Steve Jessop Dec 13 '11 at 11:32
@Steve - maybe, but that's a big dependency on compiler specific behaviour. – Sean Dec 13 '11 at 11:36
I don't think it is a big dependency, because I very much doubt that this code is performance-critical. And if it is, move it out of the loop. In cases where this is a huge deal, because you absolutely need a string literal containing just the basename, you could perhaps compute the right string at build time by running some script over the source. – Steve Jessop Dec 13 '11 at 11:37
2  
It may not be performance critical, but it can easily be seen as privacy critical. There's no real good reason for revealing my per-customer organizational practices in strings frozen into a released EXE file. Worse, for applications created on behalf of a customer, those strings might reveal things my customer might prefer not to, such as not being the author of their own product. Since __FILE__ is invoked implicitly by assert(), this leak can occur without any other overt act. – RBerteig Sep 13 '12 at 20:58
@RBerteig the basename of __FILE__ itself may also reveal things the customer might prefer not to, so using __FILE__ anywhere at all -- whether it contains the full absolute pathname or just the basename -- has the same issues that you pointed out. In this situation all output will need to be scrutinized and a special API should be introduced for output to customers. The rest of the output should be dumped to /dev/NULL or stdout and stderr should be closed. :-) – tchen Jan 11 at 5:23

Since you are using GCC, you can take advantage of

__BASE_FILE__ This macro expands to the name of the main input file, in the form of a C string constant. This is the source file that was specified on the command line of the preprocessor or C compiler

and then control how you want to display the filename by changing the source file representation (full path/relative path/basename) at compilation time.

share|improve this answer
makes no difference. I used __FILE__ and __BASE_FILE__ however they both show full path to file – mahmood Dec 13 '11 at 11:52
how do you invoke the compiler ? – ziu Dec 13 '11 at 11:57
I don't know... the code uses scons for building the target. – mahmood Dec 13 '11 at 12:01
Then I bet SCONS is calling gcc like this gcc /absolute/path/to/file.c. If you find a way to change this behavior (opening another question on SO, lol?), you do not need to modify the string at runtime – ziu Dec 13 '11 at 12:05
1  
ok thanks I will try that – mahmood Dec 13 '11 at 12:08

A slight variation on what @red1ynx proposed would to be create the following macro:

#define SET_THIS_FILE_NAME() \
    static const char* const THIS_FILE_NAME = \
        strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__;

In each of your .c(pp) files add:

SET_THIS_FILE_NAME();

Then you can refer to THIS_FILE_NAME instead of __FILE__:

printf("%s\n", THIS_FILE_NAME);

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.

share|improve this answer
@SteveJessop, are you sure? When you refer to SET_THIS_FILENAME() the preprocessor will replace it with the definition and __FILE__ will be correctly resolved. – hmjd Dec 13 '11 at 11:52
sorry, you're right. – Steve Jessop Dec 13 '11 at 11:54

Use the basename() function, or, if you are on Windows, _splitpath().

#include <libgen.h>

#define PRINTFILE() { char buf[] = __FILE__; printf("Filename:  %s\n", basename(buf)); }

Also try man 3 basename in a shell.

share|improve this answer
How? can you give an example? – mahmood Dec 13 '11 at 11:01
No I use linux gcc/g++ – mahmood Dec 13 '11 at 11:03
@mahmood: char file_copy[] = __FILE__; const char *filename = basename(__FILE__);. The reason for the copy is that basename can modify the input string. You also have to watch out that the result pointer is only good until basename is called again. This means it isn't thread-safe. – Steve Jessop Dec 13 '11 at 11:26
@SteveJessop, ah I forgot. True. – Prof. Falken Dec 13 '11 at 11:53
@Amigable: to be fair, I suspect that basename in fact will not modify the input string that results from __FILE__, because the input string doesn't have a / at the end and so there's no need for modification. So you might get away with it, but I figure the first time someone sees basename, they should see it with all the restrictions. – Steve Jessop Dec 13 '11 at 11:57
show 1 more comment

just hope to improve FILE macro a bit:

#define FILE (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : strrchr(__FILE__, '\\') ? strrchr(__FILE__, '\\') + 1 : __FILE__)

this catches / and \, like Czarek Tomczak requested, and this works great in my mixed environment.

share|improve this answer
Defining a macro named FILE is a really bad idea if you include <stdio.h>. – Keith Thompson 18 hours ago

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:

set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -D__FILENAME__='\"$(subst
  ${CMAKE_SOURCE_DIR}/,,$(abspath $<))\"'")

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:

CXX_FLAGS+=-D__FILENAME__='\"$(subst $(SOURCE_PREFIX)/,,$(abspath $<))\"'"

where $(SOURCE_PREFIX) is the prefix that you want to remove.

Then use __FILENAME__ in place of __FILE__.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.