electron/docs-translations/ko-KR/api/file-object.md

32 lines
928 B
Markdown
Raw Normal View History

2015-06-30 18:42:29 +00:00
# `File` 객체
2015-06-25 17:32:51 +00:00
> HTML5 `File` API를 기본적인 파일 시스템의 파일처럼 사용합니다.
DOM의 File 인터페이스는 네이티브 파일을 추상화 합니다. 사용자가 직접 HTML5 File
API를 사용하여 작업할 때 선택된 파일의 경로를 알 수 있도록, Electron은 파일의 실제
경로를 담은 `path` 속성을 File 인터페이스에 추가했습니다.
2015-06-25 17:32:51 +00:00
2016-04-30 16:12:54 +00:00
다음 예시는 앱으로 드래그 앤 드롭한 파일의 실제 경로를 가져옵니다:
2015-06-25 17:32:51 +00:00
```html
<div id="holder">
Drag your file here
</div>
<script>
const holder = document.getElementById('holder');
holder.ondragover = () => {
2015-06-25 17:32:51 +00:00
return false;
};
holder.ondragleave = holder.ondragend = () => {
2015-06-25 17:32:51 +00:00
return false;
};
holder.ondrop = (e) => {
2015-06-25 17:32:51 +00:00
e.preventDefault();
const file = e.dataTransfer.files[0];
2015-06-25 17:32:51 +00:00
console.log('File you dragged here is', file.path);
return false;
};
</script>
```