Merge remote-tracking branch 'origin/stable-2.0'
[bpt/guile.git] / libguile / filesys.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
b29058ff
DH
3#ifndef SCM_FILESYS_H
4#define SCM_FILESYS_H
5
dc7da0be 6/* Copyright (C) 1995,1997,1998,1999,2000,2001, 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
b29058ff 7 *
73be1d9e 8 * This library is free software; you can redistribute it and/or
53befeb7
NJ
9 * modify it under the terms of the GNU Lesser General Public License
10 * as published by the Free Software Foundation; either version 3 of
11 * the License, or (at your option) any later version.
b29058ff 12 *
53befeb7
NJ
13 * This library is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
b29058ff 17 *
73be1d9e
MV
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
53befeb7
NJ
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301 USA
73be1d9e 22 */
d3a6bc94 23
0f2d19dd
JB
24\f
25
b4309c3c 26#include "libguile/__scm.h"
0f2d19dd
JB
27
28\f
29
33b001fd 30SCM_API scm_t_bits scm_tc16_dir;
30ea841d 31
b9ef8e66 32#define SCM_DIR_FLAG_OPEN (1L << 0)
30ea841d 33
dc7da0be 34#define SCM_DIRP(x) (SCM_HAS_TYP16 (x, scm_tc16_dir))
b9ef8e66 35#define SCM_DIR_OPEN_P(x) (SCM_SMOB_FLAGS (x) & SCM_DIR_FLAG_OPEN)
47457e8a 36
0f2d19dd 37\f
0f2d19dd 38
33b001fd
MV
39SCM_API SCM scm_chown (SCM object, SCM owner, SCM group);
40SCM_API SCM scm_chmod (SCM object, SCM mode);
41SCM_API SCM scm_umask (SCM mode);
42SCM_API SCM scm_open_fdes (SCM path, SCM flags, SCM mode);
43SCM_API SCM scm_open (SCM path, SCM flags, SCM mode);
44SCM_API SCM scm_close (SCM fd_or_port);
45SCM_API SCM scm_close_fdes (SCM fd);
fcb6f5ff 46SCM_API SCM scm_stat (SCM object, SCM exception_on_error);
33b001fd
MV
47SCM_API SCM scm_link (SCM oldpath, SCM newpath);
48SCM_API SCM scm_rename (SCM oldname, SCM newname);
49SCM_API SCM scm_delete_file (SCM str);
50SCM_API SCM scm_mkdir (SCM path, SCM mode);
51SCM_API SCM scm_rmdir (SCM path);
52SCM_API SCM scm_directory_stream_p (SCM obj);
53SCM_API SCM scm_opendir (SCM dirname);
54SCM_API SCM scm_readdir (SCM port);
55SCM_API SCM scm_rewinddir (SCM port);
56SCM_API SCM scm_closedir (SCM port);
57SCM_API SCM scm_chdir (SCM str);
58SCM_API SCM scm_getcwd (void);
59SCM_API SCM scm_select (SCM reads, SCM writes, SCM excepts, SCM secs, SCM msecs);
60SCM_API SCM scm_fcntl (SCM object, SCM cmd, SCM value);
61SCM_API SCM scm_fsync (SCM object);
62SCM_API SCM scm_symlink (SCM oldpath, SCM newpath);
63SCM_API SCM scm_readlink (SCM path);
64SCM_API SCM scm_lstat (SCM str);
65SCM_API SCM scm_copy_file (SCM oldfile, SCM newfile);
66SCM_API SCM scm_dirname (SCM filename);
67SCM_API SCM scm_basename (SCM filename, SCM suffix);
25b82b34 68SCM_API SCM scm_canonicalize_path (SCM path);
22457d57 69SCM_INTERNAL SCM scm_i_relativize_path (SCM path, SCM in_path);
6a738a25 70
102dbb6f 71SCM_INTERNAL void scm_init_filesys (void);
0f2d19dd 72
b29058ff 73#endif /* SCM_FILESYS_H */
89e00824
ML
74
75/*
76 Local Variables:
77 c-file-style: "gnu"
78 End:
79*/