#include "generic.h"
+
+/**
+ * zak_utils_file_exists:
+ * @filename:
+ *
+ */
+gboolean
+zak_utils_file_exists (const gchar *filename)
+{
+ gboolean ret;
+
+ GFile *f = g_file_new_for_path (filename);
+
+ ret = g_file_query_exists (f, NULL);
+
+ g_object_unref (f);
+
+ return ret;
+}
+
/**
* zak_utils_round:
* @value:
#include <glib.h>
#include <glib-object.h>
+#include <gio/gio.h>
G_BEGIN_DECLS
+gboolean zak_utils_file_exists (const gchar *filename);
+
gdouble zak_utils_round (gdouble value, guint n_decimals);
void zak_utils_gstring_initial_capital (GString *gstring);