Ryujinx-GtkSharp/sample/gnomevfs/TestSyncWrite.cs
Mike Kestner 32aa6d0788 2005-01-12 Mike Kestner <mkestner@novell.com>
* sample/gnomevfs/*.cs : s/Test.Gnome.VFS/TestGnomeVfs to avoid
	namespace collision problems with current mcs.

svn path=/trunk/gtk-sharp/; revision=38788
2005-01-12 15:34:09 +00:00

43 lines
1.0 KiB
C#

using Gnome.Vfs;
using System;
using System.Text;
namespace TestGnomeVfs {
public class TestSyncWrite {
static void Main (string[] args)
{
if (args.Length != 1) {
Console.WriteLine ("Usage: TestSyncWrite <uri>");
return;
}
Gnome.Vfs.Vfs.Initialize ();
Gnome.Vfs.Uri uri = new Gnome.Vfs.Uri (args[0]);
Handle handle = Sync.Open (uri, OpenMode.Write);
UTF8Encoding utf8 = new UTF8Encoding ();
Result result = Result.Ok;
Console.WriteLine ("Enter text and end with Ctrl-D");
while (result == Result.Ok) {
string line = Console.ReadLine ();
if (line == null)
break;
byte[] buffer = utf8.GetBytes (line);
ulong bytesWritten;
result = Sync.Write (handle, out buffer[0],
(ulong)buffer.Length, out bytesWritten);
Console.WriteLine ("result write '{0}' = {1}", uri, result);
Console.WriteLine ("{0} bytes written", bytesWritten);
}
result = Sync.Close (handle);
Console.WriteLine ("result close '{0}' = {1}", uri, result);
Gnome.Vfs.Vfs.Shutdown ();
}
}
}