mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 01:45:32 +00:00
52f04d5a61
* glib/FileUtils.cs: New file. Wrapped g_file_get_contents() here. svn path=/trunk/gtk-sharp/; revision=8167
30 lines
671 B
C#
30 lines
671 B
C#
// GLib.FileUtils.cs - GFileUtils class implementation
|
|
//
|
|
// Author: Martin Baulig <martin@gnome.org>
|
|
//
|
|
// (c) 2002 Ximian, Inc
|
|
|
|
namespace GLib {
|
|
|
|
using System;
|
|
using System.Text;
|
|
using System.Runtime.InteropServices;
|
|
|
|
public class FileUtils
|
|
{
|
|
[DllImport("glib-2.0")]
|
|
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);
|
|
}
|
|
}
|
|
}
|