aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/petitfs-0.03/doc/pf/lseek.html
blob: 1dbb0dea197ac5886aa982257198682bf2d89ddd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="up" title="Petit FatFs" href="../00index_p.html">
<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
<link rel="stylesheet" href="../css_p.css" type="text/css" media="screen" title="ELM Default">
<title>Petit FatFs - pf_lseek</title>
</head>

<body>

<div class="para">
<h2>pf_lseek</h2>
<p>The pf_lseek function moves the file read/write pointer of the open file.</p>

<pre>
FRESULT pf_lseek (
  DWORD <span class="arg">ofs</span>       <span class="c">/* [IN] File offset in unit of byte */</span>
);
</pre>
</div>

<div class="para">
<h4>Parameters</h4>
<dl class="par">
<dt>ofs</dt>
<dd>Number of bytes where from start of the file</dd>
</dl>
</div>


<div class="para">
<h4>Return Values</h4>
<dl class="ret">
<dt>FR_OK (0)</dt>
<dd>The function succeeded.</dd>
<dt>FR_DISK_ERR</dt>
<dd>The function failed due to an error in the disk function, a wrong FAT structure or an internal error.</dd>
<dt>FR_NOT_OPENED</dt>
<dd>The file has not been opened.</dd>
</dl>
</div>


<div class="para">
<h4>Description</h4>
<p>The <tt>pf_lseek()</tt> function moves the file read/write pointer of the open file. The <tt class="arg">offset</tt> can be specified in only origin from top of the file.</p>
</div>


<div class="para">
<h4>Example</h4>
<pre>
    <span class="c">/* Move to offset of 5000 from top of the file */</span>
    res = pf_lseek(5000);

    <span class="c">/* Forward 3000 bytes */</span>
    res = pf_lseek(fs.fptr + 3000);

    <span class="c">/* Rewind 2000 bytes (take care on wraparound) */</span>
    res = pf_lseek(fs.fptr - 2000);
</pre>
</div>

<div class="para">
<h4>QuickInfo</h4>
<p>Available when <tt>_USE_LSEEK == 1</tt>.</p>
</div>

<div class="para">
<h4>References</h4>
<p><tt><a href="open.html">pf_open</a>, <a href="sfatfs.html">FATFS</a></tt></p>
</div>

<p class="foot"><a href="../00index_p.html">Return</a></p>
</body>
</html>