aboutsummaryrefslogtreecommitdiff
path: root/files/pt-pt/web/api/file/name/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pt-pt/web/api/file/name/index.html')
-rw-r--r--files/pt-pt/web/api/file/name/index.html74
1 files changed, 0 insertions, 74 deletions
diff --git a/files/pt-pt/web/api/file/name/index.html b/files/pt-pt/web/api/file/name/index.html
deleted file mode 100644
index 907a08a8e2..0000000000
--- a/files/pt-pt/web/api/file/name/index.html
+++ /dev/null
@@ -1,74 +0,0 @@
----
-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>