forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilesystem.h
More file actions
57 lines (39 loc) · 1.73 KB
/
filesystem.h
File metadata and controls
57 lines (39 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/* Copyright (C) 2009-2015 LiveCode Ltd.
This file is part of LiveCode.
LiveCode is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License v3 as published by the Free
Software Foundation.
LiveCode is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with LiveCode. If not see <http://www.gnu.org/licenses/>. */
#ifndef __MC_FILESYSTEM__
#define __MC_FILESYSTEM__
#ifndef __MC_CORE__
#include "core.h"
#endif
////////////////////////////////////////////////////////////////////////////////
enum MCFileSystemEntryType
{
kMCFileSystemEntryFile,
kMCFileSystemEntryFolder,
kMCFileSystemEntryLink,
kMCFileSystemEntryPackage
};
struct MCFileSystemEntry
{
MCFileSystemEntryType type;
const char *filename;
};
typedef bool (*MCFileSystemListCallback)(void *context, const MCFileSystemEntry& entry);
bool MCFileSystemListEntries(const char *folder, uint32_t options, MCFileSystemListCallback callback, void *p_context);
////////////////////////////////////////////////////////////////////////////////
bool MCFileSystemPathExists(const char *path, bool folder, bool& exists);
////////////////////////////////////////////////////////////////////////////////
bool MCFileSystemPathToNative(const char *path, void*& r_native_path);
bool MCFileSystemPathFromNative(const void *native_path, char*& r_path);
bool MCFileSystemPathResolve(const char *path, char*& r_resolved_path);
////////////////////////////////////////////////////////////////////////////////
#endif