1
0
Fork 0
mirror of https://github.com/suchmememanyskill/TegraExplorer.git synced 2024-09-19 21:43:40 +01:00
TegraExplorer/source/fs/fscopy.h

10 lines
296 B
C
Raw Normal View History

2020-12-26 00:05:33 +00:00
#pragma once
#include <utils/types.h>
#include "../err.h"
#define COPY_MODE_CANCEL BIT(0)
#define COPY_MODE_PRINT BIT(1)
ErrCode_t FileCopy(const char *locin, const char *locout, u8 options);
ErrCode_t FolderDelete(const char *path);
ErrCode_t FolderCopy(const char *locin, const char *locout);