#include <sys/stat.h>
Go to the source code of this file.
◆ __DCL_STAT_H__
| #define __DCL_STAT_H__ 20110119 |
◆ __chmod()
| DCLCAPI int __chmod |
( |
const String & | _path, |
|
|
mode_t | _mode ) |
Definition at line 36 of file _stat.cpp.
37{
39 return chmod(path, _mode);
40}
#define STRTOMBS_ER(str, mbs)
◆ __lchmod()
| DCLCAPI int __lchmod |
( |
const String & | _path, |
|
|
mode_t | _mode ) |
Definition at line 42 of file _stat.cpp.
43{
45 return lchmod(path, _mode);
46}
◆ __lstat()
| DCLCAPI int __lstat |
( |
const String & | _path, |
|
|
struct stat * | _buf ) |
Definition at line 30 of file _stat.cpp.
31{
33 return lstat(path, _buf);
34}
◆ __mkdir()
| DCLCAPI int __mkdir |
( |
const String & | _path, |
|
|
mode_t | _mode ) |
Definition at line 48 of file _stat.cpp.
49{
51 return mkdir(path, _mode);
52}
◆ __mkfifo()
| DCLCAPI int __mkfifo |
( |
const String & | _path, |
|
|
mode_t | _mode ) |
Definition at line 54 of file _stat.cpp.
55{
57 return mkfifo(path, _mode);
58}
◆ __stat()
| DCLCAPI int __stat |
( |
const String & | _path, |
|
|
struct stat * | _buf ) |
- Returns
- == NULL or -1, see errno
Definition at line 24 of file _stat.cpp.
25{
27 return stat(path, _buf);
28}