blob: 858c632494f8e55f413b3428db6e3a7c96062b1d (
plain) (
blame)
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
|
#ifndef __FILEUTILS_H_
#define __FILEUTILS_H_
#include "pathcoll.h"
#define IS_EXECUTABLE (1<<0)
#define IS_FILE (1<<1)
// 0 : doesn't exist, 1: Does exist
int FileExist(const char* filename, int flags);
// find a file, using Path if needed, resolving symlinks
char* ResolveFile(const char* filename, path_collection_t* paths);
// find a file, using Path if needed, NOT resolving symlinks
char* ResolveFileSoft(const char* filename, path_collection_t* paths);
// 1: if file is an x86 elf, 0: if not (or not found)
int FileIsX86ELF(const char* filename);
int FileIsX64ELF(const char* filename);
int FileIsShell(const char* filename);
// return temp folder (will return /tmp if nothing is correct)
const char* GetTmpDir(void);
// will lower case the string and return a copy. Nothing fancy here, just A..Z transformed to a..z, rest is untouched
char* LowerCase(const char* s);
#if defined(RPI) || defined(RK3399) || defined(RK3326)
void sanitize_mojosetup_gtk_background(void);
#endif
#endif //__FILEUTILS_H_
|