Gentoo Archives: gentoo-user

From: Denis <denis.che@×××××.com>
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] [OT] mkdir in a C program?
Date: Fri, 04 Apr 2008 15:31:47
Message-Id: d9a0a6da0804040831ob26faf8oc1c520f0308f4f10@mail.gmail.com
In Reply to: Re: [gentoo-user] [OT] mkdir in a C program? by Francisco Rivas
1 Here's the simple program that demonstrates usage that's good enough for me:
2
3 #include <sys/stat.h>
4 #include <sys/types.h>
5
6 int main ()
7 {
8
9 mkdir("./mydata", 0777);
10
11 return 0;
12
13 }
14
15
16 On Fri, Apr 4, 2008 at 11:22 AM, Francisco Rivas <taken2k4@×××××.com> wrote:
17 > :D Good. Wich one you used?
18 >
19 >
20 >
21 > On Sat, Apr 5, 2008 at 10:50 AM, Denis <denis.che@×××××.com> wrote:
22 > >
23 > > Thank you for all the quick replies! That answers my question :-)
24 > >
25 > >
26 > >
27 > > --
28 > >
29 > > gentoo-user@l.g.o mailing list
30 > >
31 > >
32 >
33 >
34 >
35 >
36 > --
37 > Francisco Rivas
38 > http://www.vaslibre.org.ve
39 > -
40 > And on the seventh day God said :wq and then make
41 > http://beck3r.wordpress.com/
42 > Linux User (New) : #448324
43 > Linux Machine (New) : 355187
44 > ---
45 > 4to Congreso Nacional de SL
46 > http://www.cnsl.org.ve/tiki-index.php?page=carabobo
47 --
48 gentoo-user@l.g.o mailing list

Replies

Subject Author
Re: [gentoo-user] [OT] mkdir in a C program? Francisco Rivas <taken2k4@×××××.com>