A Discrete-Event Network Simulator
Home
Tutorials ▼
English
Portuguese
Docs ▼
Wiki
Manual
Models
Develop ▼
API
Bugs
API
src
core
model
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_H
21
#define SYSTEM_PATH_H
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_H */
ns3::SystemPath::Split
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:205
ns3::SystemPath::Join
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:223
ns3::SystemPath::MakeTemporaryDirectoryName
std::string MakeTemporaryDirectoryName(void)
Get the name of a temporary directory.
Definition:
system-path.cc:281
ns3::SystemPath::ReadFiles
std::list< std::string > ReadFiles(std::string path)
Get the list of files located in a file system directory.
Definition:
system-path.cc:242
ns3
Every class exported by the ns3 library is enclosed in the ns3 namespace.
ns3::SystemPath::MakeDirectories
void MakeDirectories(std::string path)
Create all the directories leading to path.
Definition:
system-path.cc:328
ns3::SystemPath::FindSelfDirectory
std::string FindSelfDirectory(void)
Get the file system path to the current executable.
Definition:
system-path.cc:97
ns3::SystemPath::Append
std::string Append(std::string left, std::string right)
Join two file system path elements.
Definition:
system-path.cc:188
Generated on Wed Nov 7 2018 10:01:50 for ns-3 by
1.8.14