C++ :: Fail To Open / Create A File?
Dec 5, 2014
When I write the Ctor as follows, I get an Error: Invalid Sharing Flag 0 (That happens when file exists or does not exist)
File::File(const string& file)
{
m_file.open(file, std::ios::out, std::ios::app);
}
When I write the Ctor as foolows, I manage to open / create a file.
File::File(const string& file)
{
m_file.open(file);
}
What is wrong with option #1?
note that m_file is a data member of type ofstream
View 1 Replies
ADVERTISEMENT
Oct 3, 2014
I dont know how return message when user fail to open Database.
I building this class to manage db
The "open" method return an OleDbConnection type to manage it later
On catch zone I cant return string , int or other types
class ApriDB {
//Stato interno
string connessione = "";
// metodi
public ApriDB() { } // Costruttore di default
public OleDbConnection open (string connessione) {
OleDbConnection conn = new OleDbConnection(connessione);
[code].....
View 3 Replies
View Related
Jul 14, 2012
I have a folder "pics" in g: drive. There I want to create some text.txt file. Thus, the final path is "g:pics ext.txt".
How can I do that?
View 3 Replies
View Related
Dec 15, 2014
I am using
string text = System.IO.File.ReadAllText(@"C:datainput.txt");
to open a file and save it content to "text"
How can I instead create new window where user will select the .txt file he wants to read like many applications do
This is a WPF application
View 10 Replies
View Related
Dec 20, 2014
I'm trying to write a program that opens a directory and for each file in directory,it creates a thread. Inside of the thread,it reads the numbers in file.(one number in one line)And then calculates the average of these numbers. I write something like this;
void *calculate(FILE *piece){
int a,k=0,s=0,ort;
while(!feof(ayri)) {
a=fgetc(ayri);
s=s+a;
[Code] ....
When I run the programme,i get lots of errors like 'segmentation error' and some stuff about pthread_create. And I don't think the 'calculate' function is right.I don't know the right way to read numbers line by line.
View 3 Replies
View Related
Jan 25, 2015
How do i create a text file read and write in it but every time i reopen the program i must not override the data in the text file .
View 6 Replies
View Related
Sep 21, 2013
Just wonder is it possible that if the file exist, this function below will fail by returning non-zero value?
_access( INIFilename, 00 )
00 - check for Existence only
I noticed that sometimes if even the file exist, the function will fail or return non-zero value. So trying to find out and duplicate this error. It tends to happen intermittently. How can I find out what causing this error?
Code:
char INIFilename[256]="C: emp est.ini";
unsigned long Error = 0;
if( _access( INIFilename, 00 ) != 0 ) {
Error= GetLastError();
printf ("Failed to access INI file %s (%ul)", INIFilename, Error);
}
View 5 Replies
View Related
Aug 26, 2013
I'm trying to create a GUI with Open graphics Libraries.I have made a basic GUI that exits the program or shows the instructions if a option/Polygon is marked (A bigger one is behind them)But what I'm trying to do now is the following:
0. Start the direct access on the desktop
1. Screen: Press any key to continue
2. Select one option
2.1 Option one: Go to the circuit selection menu
2.1 Option two: View the instructions (Cleared)
2.1 Option three: Exit the game (Cleared)
3. Select a circuit
4. Go to the car selection menu
5. Select a car and start the race
6. Pause menu if Spacebar has been pressed
From the pause menu:
6.1. Go to the main menu
6.2. Restart the race
6.3. Exit
I know that it is OpenGL, but what i'm looking for is C++.How I could do that? What I have cleared is with IF but I'm looking for better alternatives.
View 1 Replies
View Related
Apr 10, 2014
I need to create a project that create a automated backup of a file.
i will get the file from C:/Folder/file.exe and move for a other created folder, but.. in every time that user make this backup, a folder will be created with year, month and date, like: C/Folder2/2014/April/16:42/file.exe.
View 4 Replies
View Related
Apr 15, 2013
I am wondering how can i open a .exe file with my c++ program. What is the source code?
View 6 Replies
View Related
Apr 21, 2013
I'm trying to type out whatever is in the .txt document, but I cannot open it for some reason. My code is
Code:
int main(int argc, char *argv[]) {
char ch=0;FILE *fp;
fp=fopen("C:UsersPCDesktopNew folderQuestion 5one.txt",'r');
while(ch!=EOF){
printf ("%c", ch);
ch=getc(fp);
Sleep (200);}fclose(fp);
return 0;
}
I keep getting an error with my fp=fopen so how do you open the text? Do i have anything else wrong with my code.
View 9 Replies
View Related
Jan 24, 2013
I'm trying to write a program for a pong game using a tutorial online. Every time i try to run my program its telling me "Cannot find or open pdb file" I have tried running Microsoft visual c++ as administrator and checking the box next to the Microsoft symbol server. I only get a black console screen with a blinking cursor.
View 2 Replies
View Related
Jan 7, 2015
I am fairly new to programming and I am writing a small POS system which in the background creates a receipt. I guess the relevant code would be this:
#include <stdio.h>
int main() {
FILE *receipt;
receipt = fopen("receipt.txt", "w");
fprintf(receipt, "Coffee Bar
[Code] ....
Of course the last bit wont be running for you, since the variables are missing. My question now is, that I like to open this file in a text editor. The file should be opened with a command withing the code. Is that possible at all? As you might can tell the receipt should pop up after the program ran and the user should be able to print it afterwards.
View 6 Replies
View Related
Dec 2, 2013
For homework I need to take a file of numbers (double) and fine their average. But, I seem to be having an issue just opening the file.
#include <iostream>
#include <fstream>
#include <cstdlib>
using namespace std;
void get_average(ifstream& input_file);
// Precondition: Reads all the numbers from input file stream
// Postcondition: Prints out to the screen the average of the numbers
[code]....
View 3 Replies
View Related
Nov 8, 2013
Reading a .dat file, i'm unable to open the file. This program is for a Air Quality index detector, the AQI machine records the particle concentration every minute and saves it into new data file for each day. So I need to make this program run every minute and convert the concentration in to the AQI readings.
The filename is of the format "ES642_2013-11-09.dat", where ES642 is the software name of the machine, and rest is the year, month and day. The code here is just for the file reading section:
Code:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
[Code] .....
View 4 Replies
View Related
Mar 28, 2014
Code:
'test.exe': Loaded 'C:UsersPcDocumentsVisual Studio 2010Projects estDebug est.exe', Symbols loaded.
'test.exe': Loaded 'C:WindowsSysWOW64
tdll.dll', Symbols loaded (source information stripped).
'test.exe': Loaded 'C:WindowsSysWOW64kernel32.dll', Symbols loaded (source information stripped).
[Code]...
The thread 'Win32 Thread' (0x2d0) has exited with code 1 (0x1).
The program '[6040] test.exe: Native' has exited with code 1 (0x1). my code is not wrong but there is an error which ı dont understand ...where is my error?
View 1 Replies
View Related
Nov 11, 2013
i'm writing a lexer, and i want to use boost::regex for it. im sure im using it right (just in case though)
while(!this->Source.empty())
{
if(regex_search(Start, End, Match, regex(""[^"]*""), Flags))
[code].....
someone told me to download the latest source and build that so i did, by unzipping it, cding to the source, running ./bootstrap.sh, ./b2, and finally ./b2 install. when i compile i get no errors but when i run it i get ./jade: error while loading shared libraries: libboost_regex.so.1.55.0: cannot open shared object file: No such file or directory
View 6 Replies
View Related
Jan 29, 2014
This my deposit function, i want to open the file (balance), then add the sum and store in on the text file.
float deposit( int x, int currentBalance) {
cout<<"
"<<endl;
cout<<"Welcome to the deposit area"<<endl;
cout << "Your new balance is:" << balance <<endl;
[Code] ....
View 13 Replies
View Related
Nov 9, 2013
Need reading a .dat file, i'm unable to open the file
This program is for a Air Quality index detector, the AQI machine records the particle concentration every minute and saves it into new data file for each day. So I need to make this program run every minute and convert the concentration in to the AQI readings.
The filename is of the format "ES642_2013-11-09.dat", where ES642 is the software name of the machine, and rest is the year, month and day.
The code here is just for the file reading section:
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
int main(int argc, const char * argv[]) {
[Code] ....
View 5 Replies
View Related
Feb 27, 2013
How to open my two files with argv[1] and argv[2] as the parameters . Heres my code:
void computeCalories (const char* nutrientFileName, const char* recipeFileName) {
string file, file2;
ifstream inFile;
cout << "Please enter the nutrient file name
[Code] ....
View 19 Replies
View Related
Nov 14, 2013
I need to create a text file that looks like:
first line
second line
third line
forth line
fifth line
sixth line
I want to replace the third and forth lines with three new lines. The above contents would become:
first line
second line
new line1
new line2
new line3
fifth line
sixth line
How can I do this using c++?
never was taught file function in c++
View 3 Replies
View Related
Oct 16, 2013
my programme showing error 'unable to open inclde file ****' i fallowed the general procedure i.e., options-->directories--> ( inclde proper path) still not working..
View 2 Replies
View Related
Oct 7, 2013
I am trying to open a excel file using ole automation, passin with char * the name.
Code:
void ExcelOpen(char * FileOpenName){
...
{
VARIANT result;
VariantInit(&result);
[Code] ....
View 3 Replies
View Related
Jan 11, 2013
I'm trying to open a file and perform a regex on it, then print the matches, but I'm not sure if I have it right. I think I need to remove the line -
Code:
[for ( std::vector<TCHAR>::iterator It = buffer.begin();It != buffer.end(); It++ )
since I've already copied the file into the buffer, but how do I search the buffer?
Code:
std::ifstream in(TempFullPath, std::ios::in|std::ios::binary);
if( in.fail() )
{
std::cout << "File does not exist or could not open file";
}
[Code]....
View 1 Replies
View Related
Nov 28, 2013
I am facing an issue of file open failure after CopyFileW.
I suspect that some of the handle which is part of copy is still holding the file.
How can i wait till the OS handle free the file.
Any API's available to check this ?
View 4 Replies
View Related
Jul 12, 2014
I am trying libtiff library (I downloaded the source codes as part of SDL2, but I test it separately). There is a test file named ascii_tag.c.
There is a line
Code:
tif = TIFFOpen(filename, "r");
and it breaks here when I run the program. Filename is:
Code:
static const char filename[] = "images/ascii_test.tiff";
and the file exists on disk, because the program just create it and closed the file handler. The error I got:
Debug assertion failed ... program name ... File: (and this is the strange thing!) f:ddvctoolscrt_bldself_x86crtsrcfstat64.c
line:64
Why it displays this path? I did not added this path to project so why it tries to call this file? I have installed VC in different location and running x86 32bit machine.
I already succeed to run test raw_decode.c where I used libtiff.lib and libjpeg.lib also here I used the libraries. I already succeed to open file there using
Code:
tif = TIFFOpen(srcfile,"r");
and srcfile = "./images/quad-tile.jpg.tiff".
Well I tried to use different path as "./images/ascii_test.tiff" but this also results in break. Where could be the problem that ascii_test.tiff cannot be opened?
Complete code:
Code:
/* $Id: ascii_tag.c,v 1.7 2008/04/15 13:32:12 dron Exp $ */
/* Copyright (c) 2004, Andrey Kiselev <dron@ak4719.spb.edu>
* GNU */
* TIFF Library
* Module to test ASCII tags read/write functions.
*/
#pragma once
#define _CRT_SECURE_NO_WARNINGS
//#pragma warning( disable : 4355 )
[code]....
View 5 Replies
View Related