“Die JavaScript -Datei wird geprüft” Code-Antworten

JS -Check -Datei existieren

import fs from 'fs';

const path = './file.txt';

try {
  if (fs.existsSync(path)) {
    //file exists
  }
} catch(err) {
  console.error(err);
}
Im_Arxus

Die JavaScript -Datei wird geprüft

// checking existence of file synchronously
function doesFileExist(urlToFile) {
    var xhr = new XMLHttpRequest();
    xhr.open('HEAD', urlToFile, false);
    xhr.send();
     
    return xhr.status !== 404;
}
Scriper

Überprüfen Sie, ob die Datei JavaScript vorliegt

function executeIfFileExist(src, callback) {
    var xhr = new XMLHttpRequest()
    xhr.onreadystatechange = function() {
        if (this.readyState === this.DONE) {
            callback()
        }
    }
    xhr.open('HEAD', src)
}
TC5550

Ähnliche Antworten wie “Die JavaScript -Datei wird geprüft”

Fragen ähnlich wie “Die JavaScript -Datei wird geprüft”

Weitere verwandte Antworten zu “Die JavaScript -Datei wird geprüft” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen