Re: system mkdir

2011-12-01 Thread Eric Blake
On 12/01/2011 04:32 PM, Peter Brown wrote: >>> Yes. Use the mkdir() function. That is, in fact, very similar to how it >>> should be done in Visual Studio too. I still say using mkdir() is the right solution - use a simple function, rather than a call to system(). > This seems to work for me. >

Re: system mkdir

2011-12-01 Thread Peter Brown
Eric Blake redhat.com> writes: > > On 11/28/2011 01:33 PM, Christopher Faylor wrote: > >> ?But can't find anything that will programatically create a directory > >> under Cygwin. > >> > >> ?Does anyone know how to do this? > > > > Yes. Use the mkdir() function. That is, in fact, very similar

Re: system mkdir

2011-11-28 Thread Eric Blake
On 11/28/2011 01:33 PM, Christopher Faylor wrote: >> ?But can't find anything that will programatically create a directory >> under Cygwin. >> >> ?Does anyone know how to do this? > > Yes. Use the mkdir() function. That is, in fact, very similar to how it > should be done in Visual Studio too.

Re: system mkdir

2011-11-28 Thread Christopher Faylor
On Mon, Nov 28, 2011 at 01:31:26PM -0700, Fitzy wrote: >?Hello, >? I have a program which I wrote using Visual Studio 2010, everything >works fine there. >Now I'm trying to get it all running properly under Cygwin. ?It is >compiling successfully, but the following does not

system mkdir

2011-11-28 Thread Fitzy
 Hello,   I have a program which I wrote using Visual Studio 2010, everything works fine there. Now I'm trying to get it all running properly under Cygwin.  It is compiling successfully, but the following does not work: system("mkdir temp"); I use this to create a temporary dir