GtkSharp/sample/gnomevfs/TestMime.cs
Mike Kestner 7f3171c814 merge to HEAD of jeroen and friends' work on the 2-4 branch. HEAD
is now tracking Gnome 2.6.

svn path=/trunk/gtk-sharp/; revision=35479
2004-10-29 20:33:07 +00:00

25 lines
520 B
C#

using Gnome.Vfs;
using System;
using System.Reflection;
using System.Runtime.CompilerServices;
namespace Test.Gnome.Vfs {
public class TestMime {
static void Main (string[] args)
{
if (args.Length != 1) {
Console.WriteLine ("Usage: TestSync <uri>");
return;
}
Gnome.Vfs.Vfs.Initialize ();
Gnome.Vfs.Uri uri = new Gnome.Vfs.Uri (args[0]);
MimeType mimetype = uri.MimeType;
Console.WriteLine ("Uri `{0}' looks like ", uri, mimetype.Name);
Gnome.Vfs.Vfs.Shutdown ();
}
}
}