Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
e6bcf895
Commit
e6bcf895
authored
12 years ago
by
Norihiro Watanabe
Browse files
Options
Downloads
Patches
Plain Diff
add some functions to manipulate file paths and to write files
parent
17bd284d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
BaseLib/FileTools.h
+80
-2
80 additions, 2 deletions
BaseLib/FileTools.h
with
80 additions
and
2 deletions
BaseLib/FileTools.h
+
80
−
2
View file @
e6bcf895
...
@@ -15,14 +15,15 @@
...
@@ -15,14 +15,15 @@
#ifndef FILETOOLS_H
#ifndef FILETOOLS_H
#define FILETOOLS_H
#define FILETOOLS_H
// ** INCLUDES **
#include
<string>
#include
<fstream>
#include
<sys/stat.h>
#include
<sys/stat.h>
namespace
BaseLib
{
namespace
BaseLib
{
/**
/**
* Returns true if given file exists. From http://www.techbytes.ca/techbyte103.html
* Returns true if given file exists. From http://www.techbytes.ca/techbyte103.html
*/
*/
static
bool
IsFileExisting
(
std
::
string
strFilename
)
static
bool
IsFileExisting
(
const
std
::
string
&
strFilename
)
{
{
struct
stat
stFileInfo
;
struct
stat
stFileInfo
;
bool
blnReturn
;
bool
blnReturn
;
...
@@ -51,6 +52,83 @@ static bool IsFileExisting(std::string strFilename)
...
@@ -51,6 +52,83 @@ static bool IsFileExisting(std::string strFilename)
return
(
blnReturn
);
return
(
blnReturn
);
}
}
/**
* \brief return a directory path
*/
static
std
::
string
getFileDirecotryPath
(
const
std
::
string
&
file_path
)
{
std
::
size_t
indexChWin
,
indexChLinux
;
indexChWin
=
indexChLinux
=
0
;
indexChWin
=
file_path
.
find_last_of
(
'\\'
);
indexChLinux
=
file_path
.
find_last_of
(
'/'
);
//
std
::
string
dir_path
;
if
(
indexChWin
!=
std
::
string
::
npos
)
dir_path
=
file_path
.
substr
(
0
,
indexChWin
);
// + "\\";
else
if
(
indexChLinux
!=
std
::
string
::
npos
)
dir_path
=
file_path
.
substr
(
0
,
indexChLinux
);
// + "/";
return
dir_path
;
}
/**
* \brief return a file base name
*/
static
std
::
string
getFileBaseName
(
const
std
::
string
&
file_path
)
{
std
::
size_t
indexChWin
,
indexChLinux
;
indexChWin
=
indexChLinux
=
0
;
indexChWin
=
file_path
.
find_last_of
(
'\\'
);
indexChLinux
=
file_path
.
find_last_of
(
'/'
);
//
std
::
string
dir_path
;
if
(
indexChWin
!=
std
::
string
::
npos
)
dir_path
=
file_path
.
substr
(
indexChWin
+
1
,
file_path
.
length
());
else
if
(
indexChLinux
!=
std
::
string
::
npos
)
dir_path
=
file_path
.
substr
(
indexChLinux
+
1
,
file_path
.
length
());
else
dir_path
=
file_path
;
return
dir_path
;
}
/**
* \brief return a file name with or without file extensions
*/
static
std
::
string
getFileNameFromPath
(
const
std
::
string
&
str
,
bool
with_extension
)
{
std
::
string
::
size_type
beg1
=
str
.
find_last_of
(
'/'
);
std
::
string
::
size_type
beg2
=
str
.
find_last_of
(
'\\'
);
std
::
string
::
size_type
beg
;
if
(
beg1
==
std
::
string
::
npos
&&
beg2
==
std
::
string
::
npos
)
beg
=
-
1
;
else
if
(
beg1
==
std
::
string
::
npos
)
beg
=
beg2
;
else
if
(
beg2
==
std
::
string
::
npos
)
beg
=
beg1
;
else
beg
=
(
beg1
<
beg2
)
?
beg2
:
beg1
;
std
::
string
file
(
str
.
substr
(
beg
+
1
)
);
if
(
with_extension
)
return
file
;
// cut extension
std
::
string
::
size_type
end
=
file
.
find_last_of
(
'.'
);
return
file
.
substr
(
0
,
end
);
}
/**
* \brief write value in binary
*/
template
<
typename
T
>
void
write_value_binary
(
std
::
fstream
&
fin
,
T
val
)
{
fin
.
write
((
const
char
*
)
&
val
,
sizeof
(
T
));
}
/**
* \brief truncate a file
*/
static
void
truncateFile
(
const
std
::
string
&
filename
)
{
std
::
ofstream
ofs
;
ofs
.
open
(
filename
.
c_str
(),
std
::
ios_base
::
trunc
);
ofs
.
close
();
}
}
// end namespace BaseLib
}
// end namespace BaseLib
#endif // FILETOOLS_H
#endif // FILETOOLS_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment