Web Programlama

Web Programlama

DERS PROGRAMI
Web Programlama 401 Ders Programı

Yol (Path) Kontrolü

Lisans: Creative Commons 26.11.2020 tarihinde güncellendi
Bakabileceğiniz Etiketler: Eğitmen: Geleceği Yazanlar Ekibi

exists() fonksiyonu ile verilen bir yolun (path) mevcut olup olmadığı kontrol edilebilir. Aşağıdaki örnek kodda, mevcut olan '/usr/local/bin' yolu ve mevcut olmayan '/xxx' yolu kontrol ediliyor. İlki için true (doğru), ikinci içinse false (yanlış) sonucu elde edilmektedir.

var fs = require('fs'); 

fs.exists('/usr/local/bin', function(exists) {
console.log('exists:', exists);
});

fs.exists('/xxx', function(exists) {
console.log('exists:', exists);
});

/usr/local/bin dizini mevcut olduğu için, konsola true (doğru), /xxx dizini mevxut olmadığı için konsola false (yanlış) değeri yazılmıştır.