Questions tagged as 'arquivo'

2
answers

Forms and Files

I'm making a form where I basically access a .txt file in CSV format that contains some articles and their prices (eg cheese, 2.10). The program displays the list in a table, and below are two fields that ask for "Article" and "Quantit...
asked by 12.10.2016 / 16:29
2
answers

Is the dot-comma character (;) allowed in file names?

Is the " ; " character allowed in the file name? In windows you can use the character " ; " in naming of files with no problem, but I do not know if the same rule is for Mac or Linux. I researched file naming, and I found several top...
asked by 15.08.2018 / 06:53
2
answers

What professional and specific area define the layout of data in files in a software project?

Who and how do you define the layout of data in software such as Editors, DBMSs or even who creates the text encodings? When I say "data layout", I mean, for example, how a PDF file stores the data in the document; what comes first in the file,...
asked by 04.06.2017 / 16:39
4
answers

How to group codes and add existing amounts to text files with C #?

I have several text files inside a directory. I need to do in C # and merge all the text files into a final text file, but handling the contents of them. Example: Arq1.txt 123456010 654321020 Arq2.txt 123456040 654321005 The first 6 cha...
asked by 22.05.2014 / 18:25
3
answers

Find file having only part of its name in C #

I need to find a file automatically without having to open a check box for the user to select the file. Where I already have the directory of the folder where this file will stay and I also know the part of the final name of this file, and that...
asked by 28.10.2015 / 15:53
2
answers

create a file with content in C # and save to a folder on the computer

I need to create a report and save this report to a folder inside the computer's C: drive, I can only save the file without the content and the blank name. The save code: string folder = System.Configuration.ConfigurationManager.AppSettings...
asked by 11.05.2017 / 14:56
1
answer

How to open an .fdb file?

I need to open a database file ( .fdb ), but I do not know how. What should I do to open this file? There is a list that I want to pass to Excel.     
asked by 12.02.2016 / 15:53
1
answer

What function does it allow to open .txt file and run other functions in the contents of this .txt?

What function in C language does it allow to open file .txt and run other functions in the contents of this .txt ?     
asked by 21.11.2018 / 20:37
1
answer

How to check if a file containing a specific word exists?

I'm using PHP, and in a server folder it contains files with these names: T3497012@16-01-02:21@[email protected] T3497012@16-01-02:22@[email protected] T3497012@16-01-02:23@[email protected] T3497012@16-01-02...
asked by 16.01.2018 / 20:27
2
answers

Showing one icon for directory and another icon for other files

I need to read a directory and change its icons. If it is a directory, apply an icon, if it is a .txt file, apply another icon. Here is the code I did: <?php $dir = 'ftp/'; $pasta = opendir($dir); while ($arquivo = readdir($pasta)){...
asked by 14.04.2014 / 16:34