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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
#include <iostream>
#include <fstream>
#include <string>
#include <stdlib.h>
#include "D:\funz.cpp"
#include <windows.h>
#define reset(x) strcpy(x, "")
using namespace std;
using namespace MioNS;
char * estraistring(const char*riga, int a, int b){
int dimout=b-a+2;
char * out=new char[dimout];
strcpy(out,"");
for (int i=a, j=0; i<b+1; i++, j++)
out[j]=riga[i];
out[dimout-1]='\0';
return out;
}
void jump_row(ifstream & row){
string tmp;
getline(row,tmp);
}
char* comand_dir(char path[]){
#define add(x) strcat(comando, x)
char * comando=new char[1000];
strcpy(comando, "");
add("dir "); add("\""); add(path);add("\"");
//#undef add
return comando;
}
char* comand_dir(char path[], char file[]){
//#define add(x) strcat(comando, x)
char * comando=comand_dir(path);
add(" > "); add(file);
//#undef add
return comando;
}
char* comand_dir(char path[], char file[], char param[]){
//#define add(x) strcat(comando, x)
char * comando=comand_dir(path, file);
add(" "); add(param);
//#undef add
return comando;
}
char* set (char * var, char* valore, char* param){
//#define add(x) strcat(comando, x)
char * comando=new char[1000]; strcpy(comando, "");
add("set "); add(param); add(" ");
add(var); add("=");add(valore);
//#undef add
return comando;
}
char* set (char * var, char* valore){
//#define add(x) strcat(comando, x)
char* comando=new char[1000]; strcpy(comando, "");
add("set "); add(var); add("="); add(valore);
#undef add
return comando;
}
char * nomevar(int& ndir, char* nomeconst){
char* nome=new char[1000];
strcpy(nome,nomeconst);
delete[] nomeconst;
ndir++;
strcat(nome,conv_num_numchar(ndir));
return nome;
}
char * nospace(const char * str){
int i=0, j=0;
for (i=0; str[i]==' ' && i<strlen(str); i++){};
for (j=strlen(str)-1; str[i]==' ' && j>=0; j--){};
return estraistring(str, i, j);
}
bool ok(char* valore, char filtro[]){
#define check if (filtro[i_filtro]==':') goto ast; if (filtro[i_filtro]=='?') goto inter; goto norm
#define lval i_val==strlen(valore)-1
#define lfiltro i_filtro==strlen(filtro)-1
int i_filtro=0, i_val=0;
check;//controllo su valore iniziale(non sappiamo come arriva), contro su file finale(esiste almeno un file)
norm:
if ((lval+1) || filtro[i_filtro]!=valore[i_val]){cout<<"\nreturn nor1"; return false;}//se val è finito e siamo in filtro lettera. must false. oppure..ovvio.
if (lval && lfiltro){cout<<"\nreturn nor2"; return true;}//se sono l'ultima di both. must true
i_filtro++; i_val++; if (lfiltro+1) {cout<<"\nreturn nor3";return false; }//se filtro finito e val no. essendo come last filtro una lettera. must false.
check;
inter:
if (filtro[i_filtro+1]==':') goto ast;
if (lval+1) {cout<<"\nreturn ?1";return false;}//? non trova confronti, par brutt. must false.
if ((lval) && (lfiltro)) {cout<<"\nreturn ?2";return true;} //usciti insieme. must true.
i_filtro++; i_val++; if (lfiltro+1){cout<<"\nreturn ?3"; return false; }//se lfiltro+1 allora prima era lfiltro, ma non lval e nemmeno lval+1 quindi ci sono altre lettere da controllora ma non c'è filtro(finito con'?'). must false.
check;
ast:
if (lfiltro) {cout<<"\nreturn ast1";return true;}
if (filtro[i_filtro+1]==':' || filtro[i_filtro+1]=='?') {i_filtro++; goto ast;}
while (!(i_val==strlen(valore))){
if (valore[i_val]==filtro[i_filtro+1]) {
i_filtro++;
goto norm;
}
i_val++;
}
{cout<<"\nreturn ast2";return false;}
}
#undef check
#undef lval
#undef lfiltro
int main(int argc, char * argv[]){
if (!(argc>2)) {cout<<"\nPochi argomenti\n";system("pause>nul");exit(1);}
const int dim_comand=1000;
int nfile=0, tmp=0;//della riga
char riga[dim_comand];
char *dir=new char[strlen(argv[1])];
char *filtro=new char[strlen(argv[2])];
char *valore;
char comand[dim_comand];//per comandi sys
ifstream dirfile;
//legge cartella e nome del filtro file
strcpy(dir, argv[1]);
strcpy(filtro, argv[2]);
//creazione file dir
system(set("dir", dir));
system(comand_dir(dir, "%temp%\\dirfile.txt"));
delete[] dir;
//lettura file
system("ritardo 5");
dirfile.open("C:\\Users\\Peppe\\AppData\\Local\\Temp\\dirfile.txt");
if (dirfile.fail()) {
cout<<"\nDirFile non trovato. Il programma terminera'.";
system("pause > nul");
exit(1);
}
//ignora prime 3 righe
for (int i=0; i<3; i++)
jump_row(dirfile);
while (dirfile.getline(riga, dim_comand) && !strncmp(riga, " Directory di ", 14)){//finche file cattura e c'è "Direc.."
jump_row(dirfile);
while (dirfile.getline(riga, dim_comand) && strncmp(riga, " ", 5)){//fiche file cattura e nnon ci sono "spazi"
valore=estraistring(riga, 36, strlen(riga)-1);//cattura nome del file/dir
if ((strcmp(estraistring(riga,21,25),"<DIR>")) && ok(valore, filtro)){//se la stringa non è una "DIR" ed è "ok" per il filtro
system(set(nomevar(nfile, "file_"),valore));//crea nome della variabile e setta la var. con il nome del file
delete[]valore;}
delete[]valore;
}
system(set(nomevar(tmp, "byte"), nospace(estraistring(riga, 21,35)))); //estra la grandezza totale dei file
}
dirfile.close();
system("pause > nul");
}
|