Give the syntax to remove an empty directory
rmdir(directory);
removedir(directory);
dirrem(directory);
SHOW ANSWERGive the syntax for file permission function
fileperms(file);
fperm(file);
permission_file(file);
SHOW ANSWERGive the syntax for chmod( )
chmod(file,mode);
chmod(file);
chmod(mode);
SHOW ANSWERWhich is the syntax for checking a file readable or not ?
is_readable(file);
read(file,mode);
is readable(file,mode);
SHOW ANSWERGive the syntax for the end of file function
feof(file pointer);
eof( );
eof(file pointer);
SHOW ANSWERWhat is the syntax for opening a process file pointer ?
popen( command,mode);
open(command,mode);
fopen(command,mode);
SHOW ANSWERWhich function checks the existence of a link in php ?
linkinfo( )
info( )
stat( )
SHOW ANSWERGive the syntax of the function to check the existence of a link
linkinfo(path);
info(link);
stat( link);
SHOW ANSWERGive the syntax for the function that shows the freespace in a directory
disk_free_space(“/dir”);
free_space(“/dir”);
disk_space(“/dir”);
SHOW ANSWERWhat is the syntax for the function that indicates the last time of access of a file?
fileatime(file);
fileattime(file);
filetime(file);
SHOW ANSWERGive the syntax for readlink( ) function
readlink(link) ;
readlink( );
readlink(command);
SHOW ANSWERGive the syntax for copy function in php
copy( source,destination);
fcopy(source,destination);
copy_file(source,destination );
SHOW ANSWERWhich function in php checks if a file is executable
is_executable( )
file_executable( )
executable( )
SHOW ANSWER