-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.h
37 lines (28 loc) · 991 Bytes
/
file.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
//Librerias externas
#include <iostream>
#include <stdio.h>
#include <fstream> //Fichero
using namespace std;
//************************************
//FUNCION: void File(string db,string tabla)
//PARAMETROS: Nombre de base de datos y tabla empleados
//RETORNO: String con el nombre del fichero txt
//DESCRIPCION: Crear fichero .txt registro de nueva plantacion.
//FUNCIONES INVOCADAS: n/a
//*************************************
string File(string db,string tabla){
char id[30];
string registro=db+"_"+tabla+".txt";//Fichero registro descripcion
string descrip;
strcpy(id,registro.c_str());
ofstream fs(id); //Nuevo fichero
cin.ignore();//Necesario para el getline();
cout<<"Inserte descripción de la plantacion (ENTER para finalizar)"<<endl;
getline(cin,descrip);
fs<<descrip<<endl;
cout<<"ENTER para cerrar registro: "<<registro<<endl;
cin.ignore();//Necesario para el getline();
fs.close();
cout<<id<<" Guardado con exito"<<endl;
return registro;
}