manpagez: man pages & more
info guile
Home | html | info | man
[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

7.2.3 File System

These procedures allow querying and setting file system attributes (such as owner, permissions, sizes and types of files); deleting, copying, renaming and linking files; creating and removing directories and querying their contents; syncing the file system and creating special files.

Scheme Procedure: access? path how
C Function: scm_access (path, how)

Test accessibility of a file under the real UID and GID of the calling process. The return is #t if path exists and the permissions requested by how are all allowed, or #f if not.

how is an integer which is one of the following values, or a bitwise-OR (logior) of multiple values.

Variable: R_OK

Test for read permission.

Variable: W_OK

Test for write permission.

Variable: X_OK

Test for execute permission.

Variable: F_OK

Test for existence of the file. This is implied by each of the other tests, so there’s no need to combine it with them.

It’s important to note that access? does not simply indicate what will happen on attempting to read or write a file. In normal circumstances it does, but in a set-UID or set-GID program it doesn’t because access? tests the real ID, whereas an open or execute attempt uses the effective ID.

A program which will never run set-UID/GID can ignore the difference between real and effective IDs, but for maximum generality, especially in library functions, it’s best not to use access? to predict the result of an open or execute, instead simply attempt that and catch any exception.

The main use for access? is to let a set-UID/GID program determine what the invoking user would have been allowed to do, without the greater (or perhaps lesser) privileges afforded by the effective ID. For more on this, see Testing File Access in The GNU C Library Reference Manual.

Scheme Procedure: stat object
C Function: scm_stat (object)

Return an object containing various information about the file determined by obj. obj can be a string containing a file name or a port or integer file descriptor which is open on a file (in which case fstat is used as the underlying system call).

The object returned by stat can be passed as a single parameter to the following procedures, all of which return integers:

Scheme Procedure: stat:dev st

The device number containing the file.

Scheme Procedure: stat:ino st

The file serial number, which distinguishes this file from all other files on the same device.

Scheme Procedure: stat:mode st

The mode of the file. This is an integer which incorporates file type information and file permission bits. See also stat:type and stat:perms below.

Scheme Procedure: stat:nlink st

The number of hard links to the file.

Scheme Procedure: stat:uid st

The user ID of the file’s owner.

Scheme Procedure: stat:gid st

The group ID of the file.

Scheme Procedure: stat:rdev st

Device ID; this entry is defined only for character or block special files. On some systems this field is not available at all, in which case stat:rdev returns #f.

Scheme Procedure: stat:size st

The size of a regular file in bytes.

Scheme Procedure: stat:atime st

The last access time for the file, in seconds.

Scheme Procedure: stat:mtime st

The last modification time for the file, in seconds.

Scheme Procedure: stat:ctime st

The last modification time for the attributes of the file, in seconds.

Scheme Procedure: stat:atimensec st
Scheme Procedure: stat:mtimensec st
Scheme Procedure: stat:ctimensec st

The fractional part of a file’s access, modification, or attribute modification time, in nanoseconds. Nanosecond timestamps are only available on some operating systems and file systems. If Guile cannot retrieve nanosecond-level timestamps for a file, these fields will be set to 0.

Scheme Procedure: stat:blksize st

The optimal block size for reading or writing the file, in bytes. On some systems this field is not available, in which case stat:blksize returns a sensible suggested block size.

Scheme Procedure: stat:blocks st

The amount of disk space that the file occupies measured in units of 512 byte blocks. On some systems this field is not available, in which case stat:blocks returns #f.

In addition, the following procedures return the information from stat:mode in a more convenient form:

Scheme Procedure: stat:type st

A symbol representing the type of file. Possible values are ‘regular’, ‘directory’, ‘symlink’, ‘block-special’, ‘char-special’, ‘fifo’, ‘socket’, and ‘unknown’.

Scheme Procedure: stat:perms st

An integer representing the access permission bits.

Scheme Procedure: lstat str
C Function: scm_lstat (str)

Similar to stat, but does not follow symbolic links, i.e., it will return information about a symbolic link itself, not the file it points to. path must be a string.

Scheme Procedure: readlink path
C Function: scm_readlink (path)

Return the value of the symbolic link named by path (a string), i.e., the file that the link points to.

Scheme Procedure: chown object owner group
C Function: scm_chown (object, owner, group)

Change the ownership and group of the file referred to by object to the integer values owner and group. object can be a string containing a file name or, if the platform supports fchown (see File Owner in The GNU C Library Reference Manual), a port or integer file descriptor which is open on the file. The return value is unspecified.

If object is a symbolic link, either the ownership of the link or the ownership of the referenced file will be changed depending on the operating system (lchown is unsupported at present). If owner or group is specified as -1, then that ID is not changed.

Scheme Procedure: chmod object mode
C Function: scm_chmod (object, mode)

Changes the permissions of the file referred to by obj. obj can be a string containing a file name or a port or integer file descriptor which is open on a file (in which case fchmod is used as the underlying system call). mode specifies the new permissions as a decimal number, e.g., (chmod "foo" #o755). The return value is unspecified.

Scheme Procedure: utime pathname [actime [modtime [actimens [modtimens [flags]]]]]
C Function: scm_utime (pathname, actime, modtime, actimens, modtimens, flags)

utime sets the access and modification times for the file named by path. If actime or modtime is not supplied, then the current time is used. actime and modtime must be integer time values as returned by the current-time procedure.

The optional actimens and modtimens are nanoseconds to add actime and modtime. Nanosecond precision is only supported on some combinations of file systems and operating systems.

(utime "foo" (- (current-time) 3600))

will set the access time to one hour in the past and the modification time to the current time.

Scheme Procedure: delete-file str
C Function: scm_delete_file (str)

Deletes (or “unlinks”) the file whose path is specified by str.

Scheme Procedure: copy-file oldfile newfile
C Function: scm_copy_file (oldfile, newfile)

Copy the file specified by oldfile to newfile. The return value is unspecified.

Scheme Procedure: rename-file oldname newname
C Function: scm_rename (oldname, newname)

Renames the file specified by oldname to newname. The return value is unspecified.

Scheme Procedure: link oldpath newpath
C Function: scm_link (oldpath, newpath)

Creates a new name newpath in the file system for the file named by oldpath. If oldpath is a symbolic link, the link may or may not be followed depending on the system.

Scheme Procedure: symlink oldpath newpath
C Function: scm_symlink (oldpath, newpath)

Create a symbolic link named newpath with the value (i.e., pointing to) oldpath. The return value is unspecified.

Scheme Procedure: mkdir path [mode]
C Function: scm_mkdir (path, mode)

Create a new directory named by path. If mode is omitted then the permissions of the directory file are set using the current umask (see section Processes). Otherwise they are set to the decimal value specified with mode. The return value is unspecified.

Scheme Procedure: rmdir path
C Function: scm_rmdir (path)

Remove the existing directory named by path. The directory must be empty for this to succeed. The return value is unspecified.

Scheme Procedure: opendir dirname
C Function: scm_opendir (dirname)

Open the directory specified by dirname and return a directory stream.

Before using this and the procedures below, make sure to see the higher-level procedures for directory traversal that are available (see section File Tree Walk).

Scheme Procedure: directory-stream? object
C Function: scm_directory_stream_p (object)

Return a boolean indicating whether object is a directory stream as returned by opendir.

Scheme Procedure: readdir stream
C Function: scm_readdir (stream)

Return (as a string) the next directory entry from the directory stream stream. If there is no remaining entry to be read then the end of file object is returned.

Scheme Procedure: rewinddir stream
C Function: scm_rewinddir (stream)

Reset the directory port stream so that the next call to readdir will return the first directory entry.

Scheme Procedure: closedir stream
C Function: scm_closedir (stream)

Close the directory stream stream. The return value is unspecified.

Here is an example showing how to display all the entries in a directory:

(define dir (opendir "/usr/lib"))
(do ((entry (readdir dir) (readdir dir)))
    ((eof-object? entry))
  (display entry)(newline))
(closedir dir)
Scheme Procedure: sync
C Function: scm_sync ()

Flush the operating system disk buffers. The return value is unspecified.

Scheme Procedure: mknod path type perms dev
C Function: scm_mknod (path, type, perms, dev)

Creates a new special file, such as a file corresponding to a device. path specifies the name of the file. type should be one of the following symbols: ‘regular’, ‘directory’, ‘symlink’, ‘block-special’, ‘char-special’, ‘fifo’, or ‘socket’. perms (an integer) specifies the file permissions. dev (an integer) specifies which device the special file refers to. Its exact interpretation depends on the kind of special file being created.

E.g.,

(mknod "/dev/fd0" 'block-special #o660 (+ (* 2 256) 2))

The return value is unspecified.

Scheme Procedure: tmpnam
C Function: scm_tmpnam ()

Return an auto-generated name of a temporary file, a file which doesn’t already exist. The name includes a path, it’s usually in ‘/tmp’ but that’s system dependent.

Care must be taken when using tmpnam. In between choosing the name and creating the file another program might use that name, or an attacker might even make it a symlink pointing at something important and causing you to overwrite that.

The safe way is to create the file using open with O_EXCL to avoid any overwriting. A loop can try again with another name if the file exists (error EEXIST). mkstemp! below does that.

Scheme Procedure: mkstemp! tmpl
C Function: scm_mkstemp (tmpl)

Create a new unique file in the file system and return a new buffered port open for reading and writing to the file.

tmpl is a string specifying where the file should be created: it must end with ‘XXXXXX’ and those ‘X’s will be changed in the string to return the name of the file. (port-filename on the port also gives the name.)

POSIX doesn’t specify the permissions mode of the file, on GNU and most systems it’s #o600. An application can use chmod to relax that if desired. For example #o666 less umask, which is usual for ordinary file creation,

(let ((port (mkstemp! (string-copy "/tmp/myfile-XXXXXX"))))
  (chmod port (logand #o666 (lognot (umask))))
  ...)
Scheme Procedure: tmpfile
C Function: scm_tmpfile

Return an input/output port to a unique temporary file named using the path prefix P_tmpdir defined in ‘stdio.h’. The file is automatically deleted when the port is closed or the program terminates.

Scheme Procedure: dirname filename
C Function: scm_dirname (filename)

Return the directory name component of the file name filename. If filename does not contain a directory component, . is returned.

Scheme Procedure: basename filename [suffix]
C Function: scm_basename (filename, suffix)

Return the base name of the file name filename. The base name is the file name without any directory components. If suffix is provided, and is equal to the end of basename, it is removed also.

(basename "/tmp/test.xml" ".xml")
⇒ "test"
Scheme Procedure: file-exists? filename

Return #t if the file named filename exists, #f if not.


[ << ] [ < ] [ Up ] [ > ] [ >> ]         [Top] [Contents] [Index] [ ? ]

This document was generated on February 3, 2012 using texi2html 5.0.

© manpagez.com 2000-2024
Individual documents may contain additional copyright information.