C++ :: Performing RegEx On Open File
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
ADVERTISEMENT
Oct 31, 2014
// This is my actionlink on the index view
@Html.ActionLink("Download File", "Download", new { fileName = Model.OriginalRecordRelativeFilePath })
// This is my file download method at the controller file
public FileResult Download(string fileName)
[Code] ....
I want to get the file named path from C:DataIntergrationInterfacepath. I linked the path with file name. But i get this error System.IO.FileNotFoundException: Could not find file 'C:DataIntergrationInterfacepath when i click the actionlink.
View 4 Replies
View Related
Sep 27, 2014
i found somewhere online this code that populate my listbox with file names. Now is it anyhow possible to filter those names before it gets populated by regex ?
Code:
private void PopulateListBox(ListBox lsb, string Folder, string FileType)
{
DirectoryInfo dinfo = new DirectoryInfo(Folder);
FileInfo[] Files = dinfo.GetFiles(FileType);
foreach (FileInfo file in Files)
{
lsb.Items.Add(file.Name);
}
}
Call on form load:
PopulateListBox(listBox1, Application.StartupPath, "*.exe");
Now is there way to add regex for filename?
View 5 Replies
View Related
Dec 5, 2014
regex pattern that takes only directory without file name
private void txtDownloadRoot_Validating(object sender, CancelEventArgs e)
{
Regex driveCheck = new Regex(@"([a-zA-Z]:[^/:*;/:?<>|]+)|({2}[^/:*;/:?<>|]+)");
if (!driveCheck.IsMatch(txtDownloadRoot.Text))
[Code].....
View 1 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
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
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
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
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
Jan 14, 2015
Is not the first time I upload this program i know, but the problem now is that i try to export files, because i need to create an excel graph. But when I try to run it, I don't have any result, no file and no result of the program.
Code:
#include<stdio.h>#include <time.h>
#include <cstdlib>
#include <math.h>
int randfun(double arrX[], double arrY[], int size);
int cenfun(double arrX[], double arrY[], int size);
int rotatefun(double arrX[], double arrY[], int size, double center_x, double center_y, const double angle);
[Code] .....
View 2 Replies
View Related
Jan 30, 2014
So I've been turning my programs into classes and I run into errors.
So this program is supposed to allow the user to open the file and either read or write to it.
I've omitted the read part from it as I want to attempt that on my own .
I get these compile errors:
fileclass.cpp:13: error: ISO C++ forbids declaration of ‘choice’ with no type
fileclass.cpp:21: error: ISO C++ forbids declaration of ‘choice’ with no type
fileclass.cpp: In member function ‘int file::choice()’:
[Code] .....
View 10 Replies
View Related
Feb 20, 2015
I'm trying to move a dictionary into a group of bite-sized files based off of the length of the strings in each file (I'm ignoring strings of length 1 for obvious reasons). Since I don't know what the longest word is (and I'm not going to look for it), and I don't want redundant files, I decided to use a vector of output file streams that I would put all the words into, but I can't get the file to open.
I took a look at it and found the failbit is 1, but the badbit is 0, so apparently it's a logic error on opening the stream [URL] .... I looked online and decided to try using pointers, but that didn't work either, so now I'm asking what the problem might be, because I can't think of any reason why it isn't working.
void createDictionary() {
//declare variables
string dictionaryName;//name of dictionary file
ifstream dictionaryIn;//file of original dictionary
vector<shared_ptr<ofstream>> dictionaryOut;//files where dictionary will be put based off of word length
string word;//input from the dictionary file
vector<int> lengths;//vector containing available lengths and their locations
unsigned long long counter = 0;
[Code] ....
View 2 Replies
View Related
May 26, 2013
This is the code
#include <iostream>
using std::cout;
using std::endl;
int main(int argc, char* argv[])
[Code] ...
The only Problem I have is that I need to know how to open a command window at the folder containing the .exe file(this program), inorder to enter the program name or arguments.
View 2 Replies
View Related