A Discrete-Event Network Simulator
API
system-path.h
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2008 INRIA
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation;
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17  *
18  * Authors: Mathieu Lacage <mathieu.lacage@sophia.inria.fr>
19  */
20 #ifndef SYSTEM_PATH
21 #define SYSTEM_PATH
22 
23 #include <string>
24 #include <list>
25 
32 namespace ns3 {
33 
48 namespace SystemPath {
49 
56  std::string FindSelfDirectory (void);
57 
66  std::string Append (std::string left, std::string right);
67 
80  std::list<std::string> Split (std::string path);
81 
93  std::string Join (std::list<std::string>::const_iterator begin,
94  std::list<std::string>::const_iterator end);
95 
103  std::list<std::string> ReadFiles (std::string path);
104 
115  std::string MakeTemporaryDirectoryName (void);
116 
123  void MakeDirectories (std::string path);
124 
125 } // namespace SystemPath
126 
127 
128 } // namespace ns3
129 
130 
131 #endif /* SYSTEM_PATH */
std::list< std::string > Split(std::string path)
Split a file system path into directories according to the local path separator.
Definition: system-path.cc:204
std::string Join(std::list< std::string >::const_iterator begin, std::list< std::string >::const_iterator end)
Join a list of file system path directories into a single file system path.
Definition: system-path.cc:222
std::string MakeTemporaryDirectoryName(void)
Get the name of a temporary directory.
Definition: system-path.cc:280
std::list< std::string > ReadFiles(std::string path)
Get the list of files located in a file system directory.
Definition: system-path.cc:241
Every class exported by the ns3 library is enclosed in the ns3 namespace.
void MakeDirectories(std::string path)
Create all the directories leading to path.
Definition: system-path.cc:327
std::string FindSelfDirectory(void)
Get the file system path to the current executable.
Definition: system-path.cc:97
std::string Append(std::string left, std::string right)
Join two file system path elements.
Definition: system-path.cc:187