SysStatStdc extension
POSIX file status utilities
- on
Properties
- S_IFBLK → int
-
Available on Stdc, provided by the SysStatStdc extension
Block deviceno setter - S_IFCHR → int
-
Available on Stdc, provided by the SysStatStdc extension
Character deviceno setter - S_IFDIR → int
-
Available on Stdc, provided by the SysStatStdc extension
Directoryno setter - S_IFIFO → int
-
Available on Stdc, provided by the SysStatStdc extension
FIFOno setter - S_IFLNK → int
-
Available on Stdc, provided by the SysStatStdc extension
Symbolic linkno setter - S_IFMT → int
-
Available on Stdc, provided by the SysStatStdc extension
Bit mask for the file type bit fieldno setter - S_IFREG → int
-
Available on Stdc, provided by the SysStatStdc extension
Regular fileno setter - S_IFSOCK → int
-
Available on Stdc, provided by the SysStatStdc extension
Socketno setter - S_IRUSR → int
-
Available on Stdc, provided by the SysStatStdc extension
Read permission, ownerno setter - S_IRWXU → int
-
Available on Stdc, provided by the SysStatStdc extension
Read, write, execute/search by ownerno setter - S_IWUSR → int
-
Available on Stdc, provided by the SysStatStdc extension
Write permission, ownerno setter - S_IXUSR → int
-
Available on Stdc, provided by the SysStatStdc extension
Execute/search permission, ownerno setter
Methods
-
chmod(
String pathname, int mode) → int -
Available on Stdc, provided by the SysStatStdc extension
Change permissions of a file. (Stubbed, asdart:iolacks direct synchronous chmod without invoking shell). -
mkdir(
String pathname, int mode) → int -
Available on Stdc, provided by the SysStatStdc extension
Make a directory. Note:modeis ignored in Dart'sDirectory.createSync. -
stat(
String pathname, Stat statbuf) → int -
Available on Stdc, provided by the SysStatStdc extension
Get file status.