Open-Source-Software-Entwicklung und Downloads

Browse Subversion Repository

Annotation of /trunk/doc/en/html/macro/command/fileopen.html

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1034 - (hide annotations) (download) (as text)
Tue Oct 21 00:30:15 2008 UTC (15 years, 7 months ago) by maya
Original Path: doc/trunk/en/html/macro/command/fileopen.html
File MIME type: text/html
File size: 1258 byte(s)
macro-example の中にある code を削除した。

1 maya 332 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2     "http://www.w3.org/TR/html4/strict.dtd">
3 maya 561 <html>
4     <head>
5     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
6     <title>fileopen</title>
7     <meta http-equiv="Content-Style-Type" content="text/css">
8     <link rel="stylesheet" href="../../style.css" type="text/css">
9     </head>
10 yutakapon 244
11 maya 561 <body>
12 yutakapon 244
13    
14 maya 561 <h1>fileopen</h1>
15 yutakapon 244
16 maya 495 <p>
17 maya 561 Opens a file.
18 maya 495 </p>
19 yutakapon 244
20 maya 561 <pre class="macro-syntax">
21     fileopen &lt;file handle&gt; &lt;filename&gt; &lt;append flag&gt;
22     </pre>
23 yutakapon 244
24 maya 561 <h2>Remarks</h2>
25    
26 maya 495 <p>
27 maya 561 Opens a file specified by &lt;file name&gt;.<br>
28     If the file does not exist, it is created and then opened. If the file is successfully opened, the file handle is returned in the integer variable &lt;file handle&gt;. Otherwise, &lt;file handle&gt; is set to -1.<br>
29 maya 898 If &lt;append flag&gt; is zero, the file pointer is set to the beginning of the file. If &lt;append flag&gt; is non-zero, the file pointer is set to the end of the file.
30 maya 495 </p>
31    
32 maya 561 <h2>Example</h2>
33 yutakapon 244
34 maya 561 <pre class="macro-example">
35 maya 1034 fileopen fhandle 'data.dat' 0
36 maya 561 fileopen fhandle 'data.dat' 1
37 maya 1034 </pre>
38 maya 561
39 yutakapon 1032 <pre class="macro-example">
40     fileopen fhandle 'test.bat' 0
41     filewrite fhandle 'md .\v20080619_Test'
42     fileclose fhandle
43     pause 5
44     exec 'cmd /c test.bat'
45     pause 10
46     exit
47 maya 1034 </pre>
48 yutakapon 1032
49 maya 561 </body>
50     </html>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26