-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSystemCore.h
52 lines (44 loc) · 1.28 KB
/
SystemCore.h
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
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <exception>
#include "ascii.h"
#define MAX_BLOCO_DIR 100 // Quantidade de blocos reservados para diretório
#define MAX_BLOCO_ARQ 900 // Quantidade de blocos reservados para arquivos
#define MAX_TAMANHO_BLOCO 32 // tamanho do bloco
using namespace std;
#ifndef SYSTEM_CORE
#define SYSTEM_CORE
class SystemCore{
private:
char blocoDiretorio[MAX_BLOCO_DIR][MAX_TAMANHO_BLOCO];
char blocoArquivo[MAX_BLOCO_ARQ][MAX_TAMANHO_BLOCO];
char nomeHd[30];
string PATH;
public:
SystemCore();
// manipulação do HD
void ListHd();
void DelHd(char nome[]);
bool inicializarHd(char nome[]);
bool CriarHd(char nome[]);
bool FormatarHd(char nome[]);
bool TypeHd(char nome[], int flag);
void Salvar(char nome[]);
// manipulação de arquivos
bool CriarArquivo(char nome[], char conteudo[], int flag);
bool RemoveArquivo(char nome[]);
bool TypeArquivo(char nome[]);
// manipulação de blocos
int FindBlocoDirVazio();
int FindBlocoArqVazio(int QtBloco);
int FindArquivoPorNome(char nome[]);
bool Dir();
bool CopiaArquivo(char oldNome[], char newNome[]);
bool RenameArquivo(char oldNome[], char newNome[]);
bool EditArquivo(char nome[]);
bool StatusHd();
~SystemCore();
};
#endif