I wanted to #define some macros based on whether particular directory is present in Linux, I can't use any fopen/directory/stat API's here since they are exposed during compilation phase
Example,
Need to set ---->Someway to check directory existing using C macro, i.e before compilation phase #define RANDOM 100 #else #define RANDOM 200
Need help here.