File: //usr/share/gtk-doc/html/gnome-vfs-2.0/about.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Introduction to GnomeVFS</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.68.1">
<link rel="start" href="index.html" title="GnomeVFS - Filesystem Abstraction library">
<link rel="up" href="index.html" title="GnomeVFS - Filesystem Abstraction library">
<link rel="prev" href="index.html" title="GnomeVFS - Filesystem Abstraction library">
<link rel="next" href="gnome-vfs-first-steps.html" title="A Gentle Programming Primer">
<meta name="generator" content="GTK-Doc V1.7 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
<link rel="chapter" href="about.html" title="Introduction to GnomeVFS">
<link rel="chapter" href="data-types.html" title="Basic Data Types">
<link rel="chapter" href="gnome-vfs-basic-file-ops.html" title="File Operations">
<link rel="chapter" href="gnome-vfs-directory-ops.html" title="Directory-Specific Operations">
<link rel="chapter" href="gnome-vfs-file-and-dirs-ops.html" title="Advanced File/Directory Operations">
<link rel="chapter" href="gnome-vfs-file-async-ops.html" title="Asynchronous Operations">
<link rel="chapter" href="volumes.html" title="Volumes and Drives Handling">
<link rel="chapter" href="networking.html" title="Networking">
<link rel="chapter" href="mime-registry.html" title="MIME Registry">
<link rel="chapter" href="modules.html" title="Filesystem Modules">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2"><tr valign="middle">
<td><a accesskey="p" href="index.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td> </td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GnomeVFS - Filesystem Abstraction library</th>
<td><a accesskey="n" href="gnome-vfs-first-steps.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr></table>
<div class="chapter" lang="en">
<div class="titlepage"><div><div><h2 class="title">
<a name="about"></a>Introduction to GnomeVFS</h2></div></div></div>
<div class="toc"><dl>
<dt><span class="sect1"><a href="about.html#id2481275">Uses and Purpose</a></span></dt>
<dd><dl>
<dt><span class="sect2"><a href="about.html#id2481230">User's Perspective</a></span></dt>
<dt><span class="sect2"><a href="about.html#id2481248">Developer's Perspective</a></span></dt>
</dl></dd>
<dt><span class="sect1"><a href="gnome-vfs-first-steps.html">A Gentle Programming Primer</a></span></dt>
<dd><dl>
<dt><span class="sect2"><a href="gnome-vfs-first-steps.html#id2481030">Simple Sample Program</a></span></dt>
<dt><span class="sect2"><a href="gnome-vfs-first-steps.html#id2481051">Conversion of a Sample Code Block</a></span></dt>
</dl></dd>
</dl></div>
<div class="sect1" lang="en">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="id2481275"></a>Uses and Purpose</h2></div></div></div>
<p>
GnomeVFS is a filesystem abstraction library allowing applications
plugable transparent access to a variety of "real" filesystems, from
WebDAV to digital cameras, to the local filesystem. It also contains
a number of other convenient file utilities such as a comphrehensive
MIME database / Application registry, and a copy engine. Use of GnomeVFS
ensures that an application or component will be usable by Nautilus
or other GnomeVFS applications for handling the display of data from
various URIs, as well
</p>
<div class="sect2" lang="en">
<div class="titlepage"><div><div><h3 class="title">
<a name="id2481230"></a>User's Perspective</h3></div></div></div>
<p>
From a user's perspective GnomeVFS enabled applications provide consistent
access to their data, whether it be stored on remote servers or on their
local harddisk, or even a peripheral device such as a Rio or a digital
camera. Rather than having to work around the distinction between storage
you can work off of and storage you can only "download" from or "upload" to,
GnomeVFS allows users to store their documents and data wherever it is
most convenient.
</p>
</div>
<div class="sect2" lang="en">
<div class="titlepage"><div><div><h3 class="title">
<a name="id2481248"></a>Developer's Perspective</h3></div></div></div>
<p>
Besides providing transparent access to data methods that you might
otherwise have to implement, GnomeVFS provides a number of convenience
libraries for processing URIs, detecting the MIME type of files, and
even figuring out which applications or components to launch to view
a file or what icon to use. Writing a GnomeVFS module may also be an
appropriate solution to some data access problems as it allows the
developer to implement a relatively small number of functions to gain
general filesystem semantics (and of course, writing a GnomeVFS module
benefits other applications too!).
</p>
</div>
</div>
</div>
</body>
</html>