2002-10-11 Martin Baulig <martin@gnome.org>
* glib/FileUtils.cs: New file. Wrapped g_file_get_contents() here. svn path=/trunk/gtk-sharp/; revision=8167
This commit is contained in:
parent
3b1dd1079b
commit
52f04d5a61
2 changed files with 33 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-10-11 Martin Baulig <martin@gnome.org>
|
||||
|
||||
* glib/FileUtils.cs: New file. Wrapped g_file_get_contents() here.
|
||||
|
||||
2002-10-10 Mike Kestner <mkestner@speakeasy.net>
|
||||
|
||||
* generator/CallbackGen.cs : some fixes
|
||||
|
|
29
glib/FileUtils.cs
Normal file
29
glib/FileUtils.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
// 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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue