ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkFileTools.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18
19#ifndef itkFileTools_h
20#define itkFileTools_h
21
22#include <string>
23
24namespace itk
25{
26
33{
34public:
36 static void
37 CreateDirectory(const std::string & dir);
38
40 static void
41 CreateFile(const std::string & fn);
42};
43
44} // namespace itk
45
46// here comes the implementation
47
48#include "itksys/SystemTools.hxx"
49#include "itkMacro.h"
50
51namespace itk
52{
53
55inline void
56FileTools::CreateDirectory(const std::string & dir)
57{
58 if (dir.empty() || itksys::SystemTools::FileExists(dir.c_str(), true))
59 {
60 ExceptionObject eo(__FILE__, __LINE__, "directory cannot be created");
61 throw eo;
62 }
63
64 // do nothing if it already exists
65 if (dir.empty() || "." == dir || itksys::SystemTools::FileIsDirectory(dir))
66 {
67 return;
68 }
69
70 // create it
71 itksys::SystemTools::MakeDirectory(dir.c_str());
72
73 // check successful or not
74 if (!itksys::SystemTools::FileIsDirectory(dir))
75 {
76 ExceptionObject eo(__FILE__, __LINE__, "directory cannot be created");
77 throw eo;
78 }
79}
80
82inline void
83FileTools::CreateFile(const std::string & fn)
84{
85 if (fn.empty() || itksys::SystemTools::FileIsDirectory(fn))
86 {
87 ExceptionObject eo(__FILE__, __LINE__, "file cannot be created");
88 throw eo;
89 }
90
91 // do nothing if it already exists
92 if (itksys::SystemTools::FileExists(fn.c_str(), true))
93 {
94 return;
95 }
96
97 // make sure the directory exists
98 const std::string dir = itksys::SystemTools::GetFilenamePath(fn);
100
101 // create the file
102 itksys::SystemTools::Touch(fn, true);
103
104 // check successful or not
105 if (!itksys::SystemTools::FileExists(fn.c_str(), true))
106 {
107 ExceptionObject eo(__FILE__, __LINE__, "file cannot be created");
108 throw eo;
109 }
110}
111
112} // namespace itk
113
114#endif // itkFileTools_h
Standard exception handling object.
This is a helper class to provide file/directory manipulations such as file creation,...
static void CreateDirectory(const std::string &dir)
static void CreateFile(const std::string &fn)
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....