Enlightenment CVS committal Author : lordchaos Project : e17 Module : proto
Dir : e17/proto/entropy/src/plugins Modified Files: filesystem.c Log Message: * Rename function =================================================================== RCS file: /cvsroot/enlightenment/e17/proto/entropy/src/plugins/filesystem.c,v retrieving revision 1.31 retrieving revision 1.32 diff -u -3 -r1.31 -r1.32 --- filesystem.c 2 Jan 2006 09:05:42 -0000 1.31 +++ filesystem.c 17 Jan 2006 22:11:19 -0000 1.32 @@ -691,3 +691,25 @@ } + +void entropy_filesystem_file_rename(entropy_generic_file* file_from, entropy_generic_file* file_to) { + evfs_file_uri_path* uri_path_from; + evfs_file_uri_path* uri_path_to; + + char* uri_from = entropy_core_generic_file_uri_create(file_from,0); + char* uri_to = entropy_core_generic_file_uri_create(file_to,0); + + uri_path_from = evfs_parse_uri(uri_from); + uri_path_to = evfs_parse_uri(uri_to); + + + evfs_client_file_remove(con, uri_path_from->files[0]); + + + free(uri_from); + free(uri_to); + free(uri_path_from); + free(uri_path_to); + +} + ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ enlightenment-cvs mailing list enlightenment-cvs@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs