// Writes data to a file which is unreadable/unwritable by everyone // due to missing permissions #include #include #include #include #include #include #define BUFSIZE 128 int main(int argc, char *argv[]){ char *outfile = "unreadable.txt"; printf("Opening file %s\n",outfile); int out_fd = open(outfile,O_WRONLY | O_CREAT); // open for writing and create if needed, NO PERMISSIONS if(out_fd == -1){ // check result and fail if not opened perror("Couldn't open output file"); exit(1); } printf("Writing to file %s\n",outfile); char outbuf[BUFSIZE] = "here is some text to write"; // what to write int bytes_written = write(out_fd, outbuf, BUFSIZE); // do th write if(bytes_written == -1){ // check for errors perror("Failed to read from file"); exit(1); } printf("Wrote %d bytes to %s\n",bytes_written,outfile); if(close(out_fd) == -1){ // check for errors on close perror("Couldn't close file"); } return 0; }