electron/docs-translations/tr-TR/api/file-object.md
Arif Çakıroğlu f7d4ff90ea added accelerator.md to api folders and translated (#5316)
* added accelerator.md to api folders and translated 🎉

* added file-object.md to api folder and translated

* added all folders to /tr-TR for broken links

* removed untouched documentation file

* broken link fix
2016-04-29 08:28:46 +09:00

29 lines
838 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# `File` nesnesi
> Dosya ve dosya sistemlerinde HTML5 `File` nesnesini native olarak çalışır.
DOM Dosya arayüzü HTML5 dosya API'sini kullanarak kullanıcılara doğrudan native dosyalar üzerinde çalışmasına olanak sağlar. Electron'da `File` arayüzü için `path` özelliğini eklemiştir.
`dragged-onto-the-app`'dan tam dosya yolu alma örneği:
```html
<div id="holder">
Dosyalarınızı buraya sürükleyin
</div>
<script>
var holder = document.getElementById('holder');
holder.ondragover = function () {
return false;
};
holder.ondragleave = holder.ondragend = function () {
return false;
};
holder.ondrop = function (e) {
e.preventDefault();
var file = e.dataTransfer.files[0];
console.log('Sürükleyip buraktığınız dosyalar:', file.path);
return false;
};
</script>
```