C++ :: Just Get Filename From Wstring?
Jun 15, 2012
I have a file path in a wstring like this:
wstring pathName = L"c:windowssystem est.exe";
I want to be able to geta new wstring that just contains "test" from this wstring.
How can I do that?
View 5 Replies
ADVERTISEMENT
Jul 26, 2014
How to get the number of elements of a multi-dimensional wstring?
The usual char array way not working.
Code:
int main()
{
wstring wstr[][255] =
{
L"bbbb",
L"bbbb",
L"aaa",
L"ccccccc"
};
int Size = wstr.size() / wstr[0].length();
}
View 11 Replies
View Related
Jun 17, 2013
I figured it out when I built a simple demo project. Problem arose because of trying to access a c-wrapper dll from the app class whereas the wrapper class had not been initialized there but rather in the main dialog class - so naturally it didn't work!!! Anyway, I've attached the demo for any who might be interested, but I regard the problem as resolved. Shows the value of building simple projects to isolate a problem. I failed to organize the order in which such a program initializes - I guess it's always App first, then MainFrame, then Doc and View (I think).
View 5 Replies
View Related
Feb 5, 2013
I am wondering if I have the following parameter to pass in to a function
Code : void Load(std::wstring filename);
This statement is wrong.
Code : Load("DataMesh.x");
I don't want to pre-declare a variable. How do I directly pass a wstring (literal) to this function.
View 2 Replies
View Related
Sep 26, 2012
this is the code:
Code:
#include <stdio.h>
#include <string>
#include <iostream>
using namespace std;
int main () {
int result,i,j;
[Code] ....
and it doesn't find it. it says the the word:"Users" is incorrectly formed universal character name ....
View 2 Replies
View Related
Aug 23, 2013
Code:
#include <stdio.h>
void ASCII_to_EBCDIC( size_t, unsigned char *);
void EBCDIC_to_ASCII( size_t, unsigned char *);
void to_ASCII(unsigned char *);
void to_EBCDIC(unsigned char *);
/* conversion tables */
static unsigned char
[Code] ....
The above snippet is for a buffer/string, where as i want to pass file name as a parameter and want function to process the file line by line?
View 2 Replies
View Related
Sep 1, 2014
I have lots of files needed for program named text1,text2, etc. I tried to do a loop like this:
ofstream of;
for(char i='1';i<'9';i++)
{
of.open("text"<<i<<".txt");
}
I tried without << too, but it doesn't work neither. How can I make it work, without writing a line for each operation?
View 3 Replies
View Related
Feb 10, 2013
I'm new to C and encountered a weird problem. Here's the code:
int main(){
char name[]="";
readname(name) ;
printf("The filename is: %s
",name);
printf(name);
[Code] ....
I compile this with no problem, but gives "File could not be opened". the strcmp tells me name and "snazzyjazz.txt" are not equal. but when I print them I get the same output.
View 2 Replies
View Related
Jan 18, 2013
So. I have a CSV Parser that I built. It works very well. The way it currently works is that I have the parser in a header file "CSV_Parser". So my .cpp code would look like this:
#include <iostream>
#include <eigen3/Eigen/Dense>
#include "CSV_Parser.h"
using namespace std;
using Eigen;
[Code] ....
This all works great. I am running Eclipse in Linux (Xubuntu to be precise). In the header file the .csv is opened as follows:
ifstream infile;
infile.open("/home/karrotman/Desktop/Matrix.csv");
What I would like is for the user to be able to change the file that the parser is opening through the main .cpp file. In other words, is there a way to create some variable, say "FileName" and do the following:
CSV firstMat;
string MatrixA = "/home/karrotman/Desktop/Matrix1.csv";
firstMat.extract(MatrixA);
CSV secondMat;
string MatrixB = "/home/karrotman/Desktop/Matrix2.csv";
secondMat.extract(MatrixB);
And then the .h would now say:
void extract(string FileName)
...
ifstream infile;
infile.open(FileName);
Obviously this does not work. Ultimately the goal is for me to open 4 .csvs at one time so I can do numerical operations on them.
View 2 Replies
View Related
Jan 2, 2015
I am trying to establish a connection between client and server to send a file to the server from a client. I have been successfully able to send files to the server but i am facing a problem with the the filename whenever i try to send any string to the server and use it in naming the filename at the server side, the string is successfully concatenated but it saves the filecontents in the filename.
for example: i am sending a file hello1.txt to server and the server has to save it as abcxyz.txt as i am sending the "xyz" from the client. BUT Whenever i am doing this ,the file saves as abcxyzfilecontents.txt If i saved in the .txt file "you123" ,my file at server side would save as abcxyzyou123.txt
Here are my codes:
Know that the server code implements a multi threaded server. The functionality to be discussed is defined in myfunc
Code:
server.c:
#include <stdlib.h>
#include <stdio.h>
[Code].....
View 1 Replies
View Related
Apr 21, 2014
I am wanting to have a text file which is named with the user input and appended with .txt.
cout << "Please enter a new filename for storing new coordinates in: ";
char name[50];
ofstream output;
cin.getline(name, 50);
output.open(name + ".txt");
Get an error with this code on ".txt".
View 2 Replies
View Related
Apr 20, 2012
I have written some c++ code in codeblocks but I am getting errors when i am trying to compile it. I have a file named files.txt and this file consists of the names of the files that actually contain the data that I need to present. I am trying to get the name of files from from once class and passing it through to another to process. These are the codes that i have:
main.cpp
#include <iostream>
#include <fstream>
#include <string>
#include "Files.h"
#include "Datafile.h"
using namespace std;
int main() {
ifstream infile("fileListAug.txt");
[Code] .....
The error message that i get is error: no match for call to (std:: string). For ther line with the error I have used (*******Error points to this line).
View 4 Replies
View Related