aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/api/file/name/index.html
blob: 907a08a8e2b11d3ceb34f04ed424c84f649fe782 (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
---
title: File.name
slug: Web/API/File/name
tags:
  - API
  - File API
  - Files
  - Propriadade
  - Referencia
translation_of: Web/API/File/name
---
<div>{{APIRef("File API")}}</div>

<div>Devolve o nome do ficheiro representado por um objeto {{domxref("File")}}. Por razões de segurança, o caminho é excluído desta propriedade.</div>

<h2 id="Sintaxe">Sintaxe</h2>

<pre class="syntaxbox notranslate">var <var>name</var> = <var>file</var>.name;</pre>

<h2 id="Valor">Valor</h2>

<p>Uma string, que contem o nome do ficheiro sem o caminho, por exemplo "<code>O meu Resumo.rtf</code>".</p>

<h2 id="Exemplo">Exemplo</h2>

<pre class="brush: html notranslate">&lt;input type="file" multiple onchange="processSelectedFiles(this)"&gt;
</pre>

<pre class="brush: js notranslate">function processSelectedFiles(fileInput) {
  var files = fileInput.files;

  for (var i = 0; i &lt; files.length; i++) {
    alert("Filename " + files[i].name);
  }
}</pre>

<p>Veja os resultados abaixo:</p>

<p>{{ EmbedLiveSample('Exemplo', 300, 50) }}</p>



<h2 id="Especificações">Especificações</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Especificação</th>
   <th scope="col">Estado</th>
   <th scope="col">Comentário</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('File API', '#file-attrs', 'name')}}</td>
   <td>{{Spec2('File API')}}</td>
   <td>Definição inicial.</td>
  </tr>
 </tbody>
</table>

<h2 id="Compatibilidade">Compatibilidade</h2>

<div>


<p>{{Compat("api.File.name")}}</p>
</div>

<h2 id="Ver_também">Ver também</h2>

<ul>
 <li><em><a href="/en-US/docs/Using_files_from_web_applications">Using files from web applications</a></em></li>
</ul>