I have been looking for both English and Spanish, and I do not get information that I understand about it; I try to do the following:
#include "stdafx.h"
#include <fstream>
#include <iostream>
using namespace std;
int main() {...
I'm trying to save a collection inside mongodb (Lesson) where among other data this collection has a video:
Lesson Model
'use strict'
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
var LessonSchema = Schema({
tit...
I am carrying out a program which asks me to go through several files that are in a specific folder (they are like 500 files). I have already managed to read a file using fstream , but I would like to see if there is any way to access the...