diff options
Diffstat (limited to 'files/ja/web/api/file/filename/index.html')
-rw-r--r-- | files/ja/web/api/file/filename/index.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/files/ja/web/api/file/filename/index.html b/files/ja/web/api/file/filename/index.html new file mode 100644 index 0000000000..8096f58d4e --- /dev/null +++ b/files/ja/web/api/file/filename/index.html @@ -0,0 +1,37 @@ +--- +title: File.fileName +slug: Web/API/File/fileName +tags: + - API + - DOM + - File API + - Files + - Non-standard + - Obsolete + - Property + - Reference +translation_of: Web/API/File/fileName +--- +<p>{{APIRef("File API")}}{{non-standard_header}}{{obsolete_header(7.0)}}</p> + +<p>ファイルの名前を返します。セキュリティ上の理由から、このプロパティからパスは除外されます。</p> + +<div class="note">このプロパティは非推奨です。代わりに {{domxref("File.name")}} を使用してください。</div> + +<h2 id="Syntax" name="Syntax">構文</h2> + +<pre class="notranslate">var name = instanceOfFile.fileName</pre> + +<h3 id="Value" name="Value">値</h3> + +<p>文字列</p> + +<h2 id="Specification" name="Specification">仕様策定状況</h2> + +<p>どの仕様書でも策定されていません。</p> + +<h2 id="See_also" name="See_also">あわせて参照</h2> + +<ul> + <li>{{domxref("File.name")}}</li> +</ul> |