Tagged Questions
0
votes
0answers
125 views
Writing to file and mkdir race conditions C
I made a function that tries to create a directory, and then write a simple file:
buffer = "Hello world!";
string url = "a/b/c/d/";
string tmp = "";
string done = "";
while((tmp = ...
1
vote
1answer
962 views
Error in C++ netbeans mkdir not found?
Everytime I try to build my c++ file I get this error
"/usr/bin/make" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
make[1]: Entering directory ...
5
votes
3answers
5k views
mkdir Windows vs Linux
I have a little problem while porting a Linux tool to Windows.
It is a make project and I am using MinGW on Windows System.
So I have a class which handles all the in/output and within is this line:
...
2
votes
1answer
361 views
mkdir, pathname with symbol
I have a little problem, I need to make directory from my c code or c++, doesn't matter.
But directory name must contain characters like ':', ' ','.' in general current time,
when I try to create ...
0
votes
1answer
223 views
Trouble with mkdir and ofstream
This is my first time working with directories.
I have this code snippet:
void initialize()
{
mkdir("/cydrive/c/enc/user", S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH);
mkdir("/cygdrive/c/enc/misc", ...
0
votes
2answers
6k views
CreateDirectory windows API usage in c++
i just found a little piece of code that let me create a directory with windows API without using system(). The only problem is that i can't create directory in subdirectory.
For example
...
8
votes
3answers
1k views
Why mkdir fails to work with tilde (~)?
When I write
mkdir("~/folder1" , 0777);
in linux, it failed to create a directory. If I replace the ~ with the expanded home directory, it works fine. What is the problem with using ~ ?
Thanks
0
votes
1answer
795 views
Creating new folders if they don't exist for fopen
I have a C++ program that takes user input for fopen in order to initiate a file write. Could someone help me find a function which will return a FILE* and use the Windows specific version of mkdir in ...
1
vote
5answers
1k views
writing files and dirs using C++
I'm working on a program that creates 2000 directories and puts a file in each (just a 10KB or so file). I am using mkdir to make the dirs and ofstream (i tried fopen as well) to write the files to a ...