19 Ekim 2015 Pazartesi

Posix open metodu

Metodun imzası şöyle
int open(const char *pathname, int flags, mode_t mode);
Yeni Dosya Oluşturmak
Mode için genelde 0777 kullanılır.
int filehandle = open (filename, O_WRONLY | O_CREAT, 0777);
Bu sayı dosya için
rwxrwxrwx
hakkını verir.




Hiç yorum yok:

Yorum Gönder