00001 /* 00002 * File: globus_ftp_utils.h 00003 * Author: Salvatore Monforte <Salvatore.Monforte@ct.infn.it> 00004 * Copyright (c) 2002 EU DataGrid. 00005 * For license conditions see http://www.eu-datagrid.org/license.html 00006 */ 00007 00008 // $Id: globus_ftp_utils.h,v 1.2 2004/01/14 09:57:01 pappalar Exp $ 00009 00010 #include <globus_ftp_client.h> 00011 #include <string> 00012 00013 namespace edg { 00014 namespace workload { 00015 namespace common { 00016 namespace utilities { 00017 namespace globus { 00018 00019 extern bool mkdir(const std::string& dst); 00020 extern bool exists(const std::string& dst); 00021 extern bool put (const std::string& src, const std::string& dst); 00022 00023 } 00024 } 00025 } 00026 } 00027 }