Pinned to some recent date
drivers/FilePath.h@0:fb7af294d5d9, 2016-11-17 (annotated)
- Committer:
- Simon Cooksey
- Date:
- Thu Nov 17 16:43:53 2016 +0000
- Revision:
- 0:fb7af294d5d9
Initial commit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
Simon Cooksey |
0:fb7af294d5d9 | 1 | /* mbed Microcontroller Library |
Simon Cooksey |
0:fb7af294d5d9 | 2 | * Copyright (c) 2006-2013 ARM Limited |
Simon Cooksey |
0:fb7af294d5d9 | 3 | * |
Simon Cooksey |
0:fb7af294d5d9 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
Simon Cooksey |
0:fb7af294d5d9 | 5 | * you may not use this file except in compliance with the License. |
Simon Cooksey |
0:fb7af294d5d9 | 6 | * You may obtain a copy of the License at |
Simon Cooksey |
0:fb7af294d5d9 | 7 | * |
Simon Cooksey |
0:fb7af294d5d9 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
Simon Cooksey |
0:fb7af294d5d9 | 9 | * |
Simon Cooksey |
0:fb7af294d5d9 | 10 | * Unless required by applicable law or agreed to in writing, software |
Simon Cooksey |
0:fb7af294d5d9 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
Simon Cooksey |
0:fb7af294d5d9 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
Simon Cooksey |
0:fb7af294d5d9 | 13 | * See the License for the specific language governing permissions and |
Simon Cooksey |
0:fb7af294d5d9 | 14 | * limitations under the License. |
Simon Cooksey |
0:fb7af294d5d9 | 15 | */ |
Simon Cooksey |
0:fb7af294d5d9 | 16 | #ifndef MBED_FILEPATH_H |
Simon Cooksey |
0:fb7af294d5d9 | 17 | #define MBED_FILEPATH_H |
Simon Cooksey |
0:fb7af294d5d9 | 18 | |
Simon Cooksey |
0:fb7af294d5d9 | 19 | #include "platform/platform.h" |
Simon Cooksey |
0:fb7af294d5d9 | 20 | |
Simon Cooksey |
0:fb7af294d5d9 | 21 | #include "drivers/FileSystemLike.h" |
Simon Cooksey |
0:fb7af294d5d9 | 22 | #include "drivers/FileLike.h" |
Simon Cooksey |
0:fb7af294d5d9 | 23 | |
Simon Cooksey |
0:fb7af294d5d9 | 24 | namespace mbed { |
Simon Cooksey |
0:fb7af294d5d9 | 25 | /** \addtogroup drivers */ |
Simon Cooksey |
0:fb7af294d5d9 | 26 | /** @{*/ |
Simon Cooksey |
0:fb7af294d5d9 | 27 | |
Simon Cooksey |
0:fb7af294d5d9 | 28 | class FilePath { |
Simon Cooksey |
0:fb7af294d5d9 | 29 | public: |
Simon Cooksey |
0:fb7af294d5d9 | 30 | FilePath(const char* file_path); |
Simon Cooksey |
0:fb7af294d5d9 | 31 | |
Simon Cooksey |
0:fb7af294d5d9 | 32 | const char* fileName(void); |
Simon Cooksey |
0:fb7af294d5d9 | 33 | |
Simon Cooksey |
0:fb7af294d5d9 | 34 | bool isFileSystem(void); |
Simon Cooksey |
0:fb7af294d5d9 | 35 | FileSystemLike* fileSystem(void); |
Simon Cooksey |
0:fb7af294d5d9 | 36 | |
Simon Cooksey |
0:fb7af294d5d9 | 37 | bool isFile(void); |
Simon Cooksey |
0:fb7af294d5d9 | 38 | FileLike* file(void); |
Simon Cooksey |
0:fb7af294d5d9 | 39 | bool exists(void); |
Simon Cooksey |
0:fb7af294d5d9 | 40 | |
Simon Cooksey |
0:fb7af294d5d9 | 41 | private: |
Simon Cooksey |
0:fb7af294d5d9 | 42 | const char* file_name; |
Simon Cooksey |
0:fb7af294d5d9 | 43 | FileBase* fb; |
Simon Cooksey |
0:fb7af294d5d9 | 44 | }; |
Simon Cooksey |
0:fb7af294d5d9 | 45 | |
Simon Cooksey |
0:fb7af294d5d9 | 46 | } // namespace mbed |
Simon Cooksey |
0:fb7af294d5d9 | 47 | |
Simon Cooksey |
0:fb7af294d5d9 | 48 | #endif |
Simon Cooksey |
0:fb7af294d5d9 | 49 | |
Simon Cooksey |
0:fb7af294d5d9 | 50 | /** @}*/ |