SourceForge.net Logo

Euphoria Standard Library
(ESL)

Home Page | Project Status | Contribute | Guidelines and Information



Euphoria Standard Library module:

filesys.e



1. Introduction


This module defines a series of cross-platform routines for manipulating files.



2. Routines

copy_file

Syntax: b = copy_file(source, destination)
Description: Copies from source to destination. Returns 1 if sucessful, 0 otherwise.
Status: PROPOSED


delete_file

Syntax: b = delete_file(file_name)
Description: Deletes file file_name. Returns 1 if successful, 0 otherwise.
Status: PROPOSED


move_file

Syntax: b = move_file(source, destination)
Description: Moves file source to destination. Returns 1 if sucessful, 0 otherwise.
Status: PROPOSED


rename_file

Syntax: b = rename_file(file_name, new_name)
Description: Renames file file_name, to new_file. Returns 1 if successful, 0 otherwise.
Status: PROPOSED