X-Git-Url: https://git.karo-electronics.de/?a=blobdiff_plain;f=doc%2Fhtml%2Fref%2Fposix-files-and-directories.html;fp=doc%2Fhtml%2Fref%2Fposix-files-and-directories.html;h=5c30874ac782cf1ecd89d967d44742a407f1c8c2;hb=2b5bec7716c03d42cfb16d8c98c9cea573bf6722;hp=0000000000000000000000000000000000000000;hpb=47412fc4bd1aefc0d5498bcb3860a9d727196f16;p=karo-tx-redboot.git diff --git a/doc/html/ref/posix-files-and-directories.html b/doc/html/ref/posix-files-and-directories.html new file mode 100644 index 00000000..5c30874a --- /dev/null +++ b/doc/html/ref/posix-files-and-directories.html @@ -0,0 +1,271 @@ + + + + + + + + +Files and Directories [POSIX Section 5] +
eCos Reference Manual
PrevChapter 31. POSIX Standard SupportNext

Files and Directories [POSIX Section 5]

Functions Implemented

DIR *opendir( const char *dirname ); 
+struct dirent *readdir( DIR *dirp ); 
+int readdir_r( DIR *dirp, struct dirent *entry,
+               struct dirent **result ); 
+void rewinddir( DIR *dirp ); 
+int closedir( DIR *dirp ); 
+int chdir( const char *path ); 
+char *getcwd( char *buf, size_t size );
+int open( const char * path , int oflag , ... ); 
+int creat( const char * path, mode_t mode ); 
+int link( const char *existing, const char *new ); 
+int mkdir( const char *path, mode_t mode ); 
+int unlink( const char *path ); 
+int rmdir( const char *path ); 
+int rename( const char *old, const char *new ); 
+int stat( const char *path, struct stat *buf ); 
+int fstat( int fd, struct stat *buf ); 
+int access( const char *path, int amode ); 
+long pathconf(const char *path, int name); 
+long fpathconf(int fd, int name);

Functions Omitted

mode_t umask( mode_t cmask ); 
+int mkfifo( const char *path, mode_t mode ); 
+int chmod( const char *path, mode_t mode );			// TBA 
+int fchmod( int fd, mode_t mode );				// TBA 
+int chown( const char *path, uid_t owner, gid_t group ); 
+int utime( const char *path, const struct utimbuf *times );	// TBA 
+int ftruncate( int fd, off_t length );                          // TBA

Notes


PrevHomeNext
Process Environment [POSIX Section 4]UpInput and Output [POSIX Section 6]
\ No newline at end of file