#include #pragma comment(lib, "C:\borland\bcc55\Lib\PSDK\shlwapi.lib") #include void PathIsAbsolute(void) { char *Path = "C:\\MyFolder\\Homepage\\public_html\\C\\PathIsAbsolute\\PathIsAbsolute.txt"; if (PathIsRelative(Path)) { printf("'%s'は相対パスである。\n", Path); } else { printf("'%s'は絶対パスである。\n", Path); } } int main(void) { PathIsAbsolute(); return 0; }