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