41 string dir_name =
"dir_a";
42 string file_name =
"file_b";
47 cout <<
"Creating directory... " << endl;
49 f.
open(dir_name +
"/" + file_name);
52 cout <<
"file was opened correctly" << endl;
54 f.
printf(
"some random text ...\n");
55 f.
printf(
"some more random text.\n");
56 f.
printf(
"CPose2D: %s", a_pose.asString().c_str());
61 cout <<
"file was NOT opened successfully" << endl;
67 cout <<
"directory " << dir_name <<
" exists. " << endl;
68 cout <<
"removing directory altogether... " << endl;
81 string dir_name =
"dir_b";
83 string fname =
"file";
90 string string_to_add =
"_renamed_" + cur_time_validstr;
97 cout <<
"directory " << dir_name <<
" doesn't exist. " << endl;
98 cout <<
"Creating it.. " << endl;
103 "There was an error creating the directory: " + dir_name);
108 for (
int i = 0; i < 10; i++)
111 ss_tmp << dir_name <<
"/" << fname << i;
112 f.
open(ss_tmp.str());
113 f.
printf(
"dummy text in file...");
118 for (
int i = 0; i < 10; i++)
121 ss_tmp << dir_name <<
"/" << fname << i;
124 ss_tmp.str() + string_to_add);
128 cout <<
"Renaming directory " << dir_name <<
" to: " << dir_name
129 << string_to_add << endl;
130 string* err_msg =
nullptr;
131 success =
renameFile(dir_name, dir_name + string_to_add, err_msg);
134 cout <<
"Directory renaming was successful!" << endl;
138 THROW_EXCEPTION(
"Error while trying to rename directory: " + dir_name);
149 cout <<
"Running setupDirContents fun..." << endl;
150 cout <<
"------------------------------" << endl;
152 cout <<
"Press a key to continue..." << endl;
156 cout <<
"Running RenameDirContents fun..." << endl;
157 cout <<
"------------------------------" << endl;
162 catch (
const std::exception& e)
169 printf(
"Untyped exception!!");
virtual int printf(const char *fmt,...) MRPT_printf_format_check(2
Writes a string to the stream in a textual form.
bool createDirectory(const std::string &dirName)
Creates a directory.
#define THROW_EXCEPTION(msg)
bool renameFile(const std::string &oldFileName, const std::string &newFileName, std::string *error_msg=nullptr)
Renames a file - If the target path is different and the filesystem allows it, it will be moved to th...
std::string fileNameStripInvalidChars(const std::string &filename, const char replacement_to_invalid_chars='_')
Replace invalid filename chars by underscores ('_') or any other user-given char. ...
mrpt::Clock::time_point TTimeStamp
A system independent time type, it holds the the number of 100-nanosecond intervals since January 1...
void renameDirContents()
Initialize a directory along with some dummy content.
This CStream derived class allow using a file as a write-only, binary stream.
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
bool fileOpenCorrectly() const
Returns true if the file was open without errors.
bool open(const std::string &fileName, bool append=false)
Open the given file for write.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
std::string dateTimeToString(const mrpt::system::TTimeStamp t)
Convert a timestamp into this textual form (UTC time): YEAR/MONTH/DAY,HH:MM:SS.MMM.
std::string exception_to_str(const std::exception &e)
Builds a nice textual representation of a nested exception, which if generated using MRPT macros (THR...
bool deleteFilesInDirectory(const std::string &s, bool deleteDirectoryAsWell=false)
Delete all the files in a given directory (nothing done if directory does not exists, or path is a file).
bool directoryExists(const std::string &fileName)
Test if a given directory exists (it fails if the given path refers to an existing file)...
void close()
Close the stream.
static uint64_t getCurrentTime() noexcept
void setupDirContents()
Create a directory Open and write some content in a file inside the directory If directory exists del...