From a551a219577761befd9450f487394013bad857d2 Mon Sep 17 00:00:00 2001 From: Gustavo Noronha Silva Date: Thu, 26 Mar 2009 15:29:32 +0000 Subject: Remove downloading files when cancelling the download. svn path=/trunk/; revision=8940 --- lib/ephy-file-helpers.c | 28 ++++++++++++++++++++++++++++ lib/ephy-file-helpers.h | 1 + 2 files changed, 29 insertions(+) (limited to 'lib') diff --git a/lib/ephy-file-helpers.c b/lib/ephy-file-helpers.c index cc588985b..7f38978dd 100644 --- a/lib/ephy-file-helpers.c +++ b/lib/ephy-file-helpers.c @@ -754,3 +754,31 @@ ephy_file_delete_directory (const char *path) } g_object_unref (file); } + +/** + * ephy_file_delete_uri + * @uri: URI of the file to be deleted + * + * Remove the given URI. + * + */ +void +ephy_file_delete_uri (const char *uri) +{ + GFile *file; + gboolean ret; + + file = g_file_new_for_uri (uri); + + ret = g_file_delete (file, NULL, NULL); + + if (ret == TRUE) + { + LOG ("Deleted file at URI '%s'", uri); + } + else + { + LOG ("Couldn't file at URI '%s'", uri); + } + g_object_unref (file); +} diff --git a/lib/ephy-file-helpers.h b/lib/ephy-file-helpers.h index 77aa5e055..1127b0691 100644 --- a/lib/ephy-file-helpers.h +++ b/lib/ephy-file-helpers.h @@ -103,6 +103,7 @@ gboolean ephy_file_browse_to (GFile *file, void ephy_file_delete_directory (const char *path); +void ephy_file_delete_uri (const char *uri); G_END_DECLS #endif /* EPHY_FILE_HELPERS_H */ -- cgit v1.2.3