]> git.donarmstrong.com Git - qmk_firmware.git/blob - tool/mbed/mbed-sdk/libraries/mbed/api/FilePath.h
Squashed 'tmk_core/' changes from 7967731..b9e0ea0
[qmk_firmware.git] / tool / mbed / mbed-sdk / libraries / mbed / api / FilePath.h
1 /* mbed Microcontroller Library
2  * Copyright (c) 2006-2013 ARM Limited
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 #ifndef MBED_FILEPATH_H
17 #define MBED_FILEPATH_H
18
19 #include "platform.h"
20
21 #include "FileSystemLike.h"
22 #include "FileLike.h"
23
24 namespace mbed {
25
26 class FilePath {
27 public:
28     FilePath(const char* file_path);
29
30     const char* fileName(void);
31
32     bool          isFileSystem(void);
33     FileSystemLike* fileSystem(void);
34
35     bool    isFile(void);
36     FileLike* file(void);
37     bool    exists(void);
38
39 private:
40     const char* file_name;
41     FileBase* fb;
42 };
43
44 } // namespace mbed
45
46 #endif