2002-10-11 15:41:49 +00:00
|
|
|
// GLib.FileUtils.cs - GFileUtils class implementation
|
|
|
|
//
|
|
|
|
// Author: Martin Baulig <martin@gnome.org>
|
|
|
|
//
|
2004-06-25 18:42:19 +00:00
|
|
|
// Copyright (c) 2002 Ximian, Inc
|
|
|
|
//
|
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of version 2 of the Lesser GNU General
|
|
|
|
// Public License as published by the Free Software Foundation.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this program; if not, write to the
|
|
|
|
// Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
// Boston, MA 02111-1307, USA.
|
|
|
|
|
2002-10-11 15:41:49 +00:00
|
|
|
|
|
|
|
namespace GLib {
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Text;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
|
|
|
|
public class FileUtils
|
|
|
|
{
|
2003-02-22 04:34:56 +00:00
|
|
|
[DllImport("libglib-2.0-0.dll")]
|
2002-10-11 15:41:49 +00:00
|
|
|
extern static bool g_file_get_contents (string filename, out IntPtr contents, out int length, out IntPtr error);
|
|
|
|
|
|
|
|
public static string GetFileContents (string filename)
|
|
|
|
{
|
|
|
|
int length;
|
|
|
|
IntPtr contents, error;
|
|
|
|
|
|
|
|
if (!g_file_get_contents (filename, out contents, out length, out error))
|
|
|
|
throw new GException (error);
|
|
|
|
|
|
|
|
return Marshal.PtrToStringAnsi (contents, length);
|
|
|
|
}
|
2003-11-28 05:29:34 +00:00
|
|
|
|
|
|
|
private FileUtils () {}
|
2002-10-11 15:41:49 +00:00
|
|
|
}
|
|
|
|
}
|