Next Previous Up Top Contents Index

8.7 The FILE-SYSTEM module

working-directory-setter

Function

Summary

Sets the working directory for the current process.

Signature

working-directory-setter directory => directory

Arguments

directory
An instance of <pathname>.

Values

directory
An instance of <pathname>.

Library

system

Module

file-system

Description

Sets the working directory for the current process.

Note that the following calls are equivalent

working-directory() := "C:\USERS\JOHN\FOO.TEXT";
working-directory() := "C:\USERS\JOHN\";

as they will both set the working directory to C:\USERS\JOHN. The call

working-directory() := "C:\USERS\JOHN";

is not equivalent as it sets the working directory to C:\USERS.

Example

working-directory() := "C:\USERS\JOHN\";

See also

working-directory, page 173


System and I/O Reference - 31 MAR 2000

Next Previous Up Top Contents Index