48 lines
1.6 KiB
C
48 lines
1.6 KiB
C
/*
|
|
* mooutils-fs.h
|
|
*
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* See COPYING file that comes with this distribution.
|
|
*/
|
|
|
|
#ifndef __MOO_UTILS_FS_H__
|
|
#define __MOO_UTILS_FS_H__
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
gboolean moo_save_file_utf8 (const char *name,
|
|
const char *text,
|
|
gssize len,
|
|
GError **error);
|
|
gboolean moo_rmdir (const char *path,
|
|
gboolean recursive);
|
|
|
|
char **moo_filenames_from_locale (char **files);
|
|
|
|
/*
|
|
* C library and WinAPI functions wrappers analogous to glib/gstdio.h
|
|
*/
|
|
|
|
int m_unlink (const char *path);
|
|
int m_mkdir (const char *path); /* S_IRWXU on unix */
|
|
int m_rmdir (const char *path);
|
|
int m_remove (const char *path);
|
|
gpointer m_fopen (const char *path,
|
|
const char *mode);
|
|
int m_rename (const char *old_name,
|
|
const char *new_name);
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __MOO_UTILS_FS_H__ */
|