UNIX / Linux Command Summary
Monday, December 17th, 2007
UNIX / Linux Command
Summary
access()
Used to check the accessibility of files
int
Access(pathname, access_mode)
Char* pathname;
int access-mode;
The access modes are.
04 read
02 write
01 execute (search)
00 checks existence of a file [...]

