19 lines
459 B
C
19 lines
459 B
C
#ifndef FILEMANAGER_H
|
|
#define FILEMANAGER_H
|
|
#include "copytron.h"
|
|
/// sets the current destenation.
|
|
void SetCurrentDestenation(const char*);
|
|
const char* GetCurrentDestenation();
|
|
/// sets the current working directory.
|
|
void SetCurrentWorkingDirectory(const char*);
|
|
const char* GetCurrentWorkingDriectory();
|
|
|
|
void SetCopytronFliper(copytron_flips* flips);
|
|
|
|
/// Adds a directory
|
|
void AddDirectory(const char*);
|
|
/// Adds a file
|
|
void AddFile(const char*);
|
|
#endif
|
|
|