Sezioni principali
Forum
Offerte lavoro
Corsi
Articoli
Toggle sign-in
Toggle search
Forum
Pubblica Offerte Lavoro
Iscrizione Candidati
Login
Cerca In
Offerte lavoro
Forum
Corsi formazione
Articoli
Home
Offerte di lavoro
Area Candidati
Offerte di lavoro
Iscrizione Candidati
Area Aziende
Iscrizione Aziende
Aziende iscritte
Forum
Generale
Indice Forum
Cerca nel Forum
Messaggi recenti
Registrazione
Area Software
Ingegneria del software
Assembly
C/C++
Delphi
Java
Matlab e Simulink
Microsoft .NET
Python
Area Web
HTML e CSS
JavaScript
Angular
ASP.NET
PHP
Webmaster
Mobile
Android
Apple iOS e Objective-C
Windows Phone
Database
Progettazione Database
Microsoft Access
MySQL e MariaDB
Oracle
PostgreSQL
SQL Server
Excel
Hardware & OS
Microsoft Windows
Linux
Hardware e Reti
Sistemi Embedded e Microcontroller
Corsi di informatica
Eventi ICT
Articoli
Software & Utility
Sviluppo software
Il tuo Indirizzo IP
Home
Forum
C/C++
Nuovi posts
Cerca
Iscriviti
[C] Funzione creat() e open()
di
stefanaimon
il
06 mag 2014, 16:05
Cerca
Ricerca avanzata
2 risposte
S
stefanaimon
Utente Attivo
Iscritto da
dic, 2013
Messaggi:
75
[C] Funzione creat() e open()
06 mag 2014, 16:45
Salve, qualcuno può spiegarmi l'uso del
mode
nella sintassi delle due funzioni?
int creat(char nomefile[], int mode); int open(char nomefile[],int flag, [int mode]);
2 Risposte
O
oregon
Super Famoso
Iscritto da
nov, 2011
Messaggi:
21748
Re: [C] Funzione creat() e open()
06 mag 2014, 16:54
Se conosci i permessi Unix/Linux ...
mode required if file is created, ignored otherwise.
mode specifies the protection bits, e.g. 0644 = rw-r--r--
There are also highly un-memorable named constants if <sys/stat.h> is included,
they may be added together in any combination:
S_IRUSR Owner may read
S_IWUSR Owner may write
S_IXUSR Owner may execute
S_IRGRP Members of group may read
S_IWGRP Members of group may write
S_IXGRP Members of group may execute
S_IROTH Others may read
S_IWOTH Others may write
S_IXOTH Others may execute
S
stefanaimon
Utente Attivo
Iscritto da
dic, 2013
Messaggi:
75
Re: [C] Funzione creat() e open()
06 mag 2014, 17:08
Sono tutti questi i vari ''mode'' o ce ne sono anche altri?
Devi
accedere
o
registrarti
per scrivere nel forum
2 risposte