Questions tagged as 'archivo'

1
answer

Read a File and Divide it by PHP Pages

Good I have the code portion to read a file and show it $file = fopen("../assets/libros/el_libro_de_la_sabiduria/cap_01.htm", "r") or exit("Unable to open file!"); $getline = ''; while(!feof($file)) { $getline .= fgets($file). "<br /&g...
asked by 09.11.2018 / 19:08
1
answer

Problem when saving a file in a folder, which comes from type byte [] on the server when using WriteAllBytes in C #

I have the following function. private void guardarimagen( byte[] img) { var path = Server.MapPath("~/Images/prueba.jpg"); System.IO.File.WriteAllBytes(path, img); } EN localhost works fine, but when I tr...
asked by 11.10.2018 / 19:06
1
answer

getline problem in c ++

I have a problem with my code, what happens is that when I compile it does not send me any error, but in this part of my code, the gertLine I use to enter the values (USERNAME, MAIL, PASSWORD AND NAME) , the first Characters or numbers do...
asked by 02.09.2018 / 01:31
1
answer

Inconsistency in reading a flat file ("?") C #

I am reading a flat UTF-8 source code file and I read it with UTF-8, so far everything works fine, but I have a record that for reasons I can not find yet, it brings me a question mark when I register it in the BD, but I do all the follow-up and...
asked by 03.09.2018 / 18:08
1
answer

Why can not I download a file in PHP?

I have a problem when I want to download a file, in this case Excel. I found the code on the Internet, when I paste it I get an error in the header . I've searched for other codes, but apparently they still have problems in the header. It...
asked by 06.09.2018 / 19:38
1
answer

Problem of accents in the name when saving a file in php

I have a problem when uploading files in php, the files upload well but they remain with the name: Presentation1.pptx when they should be Presentation1.pptx, because the name changes I can not call them later, I tried with utf8_encode ($ _FILES...
asked by 19.06.2018 / 22:04
1
answer

How to copy a file from one directory to another with PHP?

I have 2 websites on the same linux server, but as is logical, there are different folders, with this code I can copy files within the same domain so to speak. How can I copy a file from one domain to another? and in case I have to use ftp, I ca...
asked by 16.06.2018 / 03:15
1
answer

Reading and writing binary files in c with fread-fwrite

I am trying to read and write binary files. I create a matrix in ram memory, then I write it in a binary file. void escribirMatrizParcialmente(double ***A){ FILE *destino; int i,j; if((destino=fopen(ARCHIVOMATRIZ,"wb"))==NU...
asked by 09.04.2018 / 06:03
1
answer

MVC C # create file and save it

Friends I am trying to create a txt and save it in my project, but I have some problems, I did something similar a few days ago with the difference that it is already a file to my method, in this I'm just creating it but I have problems to save...
asked by 19.05.2018 / 01:09
1
answer

Error writing to file, you can not concatenate str a bytes

I've done a simple tcp server in Python and what I want to do is save the client's messages in a text file. What happens is that when I try it, it means that you can not concatenate bytes to string. Would they know how to do it? This is th...
asked by 02.02.2018 / 17:45