Refactor storage/filesystem directory

pull/13300/head
Rajkumar Kanagaraj 2020-07-15 04:44:09 -07:00
parent ca2f980661
commit b340492142
13 changed files with 18 additions and 18 deletions

View File

@ -26,7 +26,7 @@
#ifndef MBED_FATFILESYSTEM_H
#define MBED_FATFILESYSTEM_H
#include "storage/filesystem/FileSystem.h"
#include "filesystem/FileSystem.h"
#include "blockdevice/BlockDevice.h"
#include "FileHandle.h"
#include <stdint.h>

View File

@ -19,12 +19,12 @@
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "storage/filesystem/fat/ChaN/diskio.h"
#include "storage/filesystem/fat/ChaN/ffconf.h"
#include "storage/filesystem/fat/ChaN/ff.h"
#include "fat/ChaN/diskio.h"
#include "fat/ChaN/ffconf.h"
#include "fat/ChaN/ff.h"
#include "platform/mbed_debug.h"
#include "platform/mbed_critical.h"
#include "storage/filesystem/mbed_filesystem.h"
#include "filesystem/mbed_filesystem.h"
#include "FATFileSystem.h"
#include <errno.h>

View File

@ -17,7 +17,7 @@
#ifndef DIR_H
#define DIR_H
#include "storage/filesystem/FileSystem.h"
#include "filesystem/FileSystem.h"
#include "platform/DirHandle.h"
namespace mbed {

View File

@ -17,7 +17,7 @@
#ifndef FILE_H
#define FILE_H
#include "storage/filesystem/FileSystem.h"
#include "filesystem/FileSystem.h"
#include "platform/FileHandle.h"
namespace mbed {

View File

@ -23,9 +23,9 @@
#include "platform/platform.h"
// FileSystem classes
#include "storage/filesystem/FileSystem.h"
#include "storage/filesystem/File.h"
#include "storage/filesystem/Dir.h"
#include "filesystem/FileSystem.h"
#include "filesystem/File.h"
#include "filesystem/Dir.h"
// BlockDevice classes
#include "blockdevice/BlockDevice.h"

View File

@ -20,7 +20,7 @@
#ifndef MBED_LFSFILESYSTEM_H
#define MBED_LFSFILESYSTEM_H
#include "storage/filesystem/FileSystem.h"
#include "filesystem/FileSystem.h"
#include "blockdevice/BlockDevice.h"
#include "platform/PlatformMutex.h"
#include "storage/filesystem/littlefs/littlefs/lfs.h"

View File

@ -13,8 +13,8 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "storage/filesystem/mbed_filesystem.h"
#include "LittleFileSystem.h"
#include "filesystem/mbed_filesystem.h"
#include "littlefs/LittleFileSystem.h"
#include "errno.h"
#include "storage/filesystem/littlefs/littlefs/lfs.h"
#include "storage/filesystem/littlefs/littlefs/lfs_util.h"

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "Dir.h"
#include "filesystem/Dir.h"
#include <errno.h>
namespace mbed {

View File

@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "File.h"
#include "filesystem/File.h"
#include <errno.h>
namespace mbed {

View File

@ -14,9 +14,9 @@
* limitations under the License.
*/
#include "storage/filesystem/Dir.h"
#include "storage/filesystem/File.h"
#include "storage/filesystem/FileSystem.h"
#include "filesystem/Dir.h"
#include "filesystem/File.h"
#include "filesystem/FileSystem.h"
#include <errno.h>
namespace mbed {