mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 12:25:40 +00:00
32aa6d0788
* sample/gnomevfs/*.cs : s/Test.Gnome.VFS/TestGnomeVfs to avoid namespace collision problems with current mcs. svn path=/trunk/gtk-sharp/; revision=38788
43 lines
1 KiB
C#
43 lines
1 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 ();
|
|
}
|
|
}
|
|
}
|