bazı dosya okuma yazma vb işlemler için fonksiyonlar...
- fopen( ) bir dosyayı açar.(Opens a file.)
- fclose( ) açılan dosyayı kapatır (Closes a file.)
- putc( ) dosyaya bir karakter yazar (Writes a character to a file.)
- fputc( ) yukardaki fonksiyon ile aynı görevi yapar(Same as putc() .)
- getc( ) dosyadan bir karakter okur( Reads a character from a file.)
- fgetc( ) yukardaki fonksiyon ile aynı görevi yapar Same as getc() .
- fgets( ) dosyadan string okur (Reads a string from a file.)
- fputs( ) dosyaya string yazar(Writes a string to a file.)
- fseek( ) belirtilen byte ı dosyada arar (Seeks to a specified byte in a file.)
- ftell( ) mevcut dosya pozisyonunu döndürür(Returns the current file position.)
- fprintf( ) Is to a file what printf() is to the console.
- fscanf( ) Is to a file what scanf() is to the console.
- feof( ) dosyanın sonuna gelindiyse true döndürür( Returns true if end-of-file is reached.)
- ferror( ) herhangi bir hata olursa dosya işeminde true döndürür(Returns true if an error has occurred.)
- rewind( ) belirteçi dosya başına getirir(Resets the file position indicator to the beginning of the file.)
- remove( ) dosyayı siler(Erases a file.)
- fflush( ) Flushes a file.
0 yorum:
Yorum Gönder