Chciałbym sprawdzić, czy dany katalog istnieje. Wiem, jak to zrobić w systemie Windows:Przenośny sposób sprawdzania, czy istnieje katalog [Windows/Linux, C]
BOOL DirectoryExists(LPCTSTR szPath)
{
DWORD dwAttrib = GetFileAttributes(szPath);
return (dwAttrib != INVALID_FILE_ATTRIBUTES &&
(dwAttrib & FILE_ATTRIBUTE_DIRECTORY));
}
i Linux:
DIR* dir = opendir("mydir");
if (dir)
{
/* Directory exists. */
closedir(dir);
}
else if (ENOENT == errno)
{
/* Directory does not exist. */
}
else
{
/* opendir() failed for some other reason. */
}
Ale muszę przenośny sposób to zrobić .. Czy istnieje jakiś sposób, aby sprawdzić, czy katalog istnieje bez względu na to, co Używasz OS? Może sposób C standardowej biblioteki?
Wiem, że mogę używać dyrektyw preprocesorów i wywoływać te funkcje w różnych systemach operacyjnych, ale to nie jest rozwiązanie, o które pytam.
I skończyć z tym, przynajmniej na razie:
#include <sys/types.h>
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
int dirExists(const char *path)
{
struct stat info;
if(stat(path, &info) != 0)
return 0;
else if(info.st_mode & S_IFDIR)
return 1;
else
return 0;
}
int main(int argc, char **argv)
{
const char *path = "./TEST/";
printf("%d\n", dirExists(path));
return 0;
}
jak o po prostu próbuje utworzyć plik (o losowej nazwie pliku) w nim? – stijn