detect_file_format Methode

detect_file_format(stream)

Erkennt und gibt die Informationen über ein Excel-Format zurück, das in einem Stream gespeichert ist.

Kehrt zurück

Ein FileFormatInfo-Objekt, das die erkannten Informationen enthält.

def detect_file_format(self, stream):
    ...
ParameterTypBeschreibung
streamio.RawIOBase

detect_file_format(file_path)

Erkennt und gibt die Informationen über ein Excel-Format zurück, das in einer Datei gespeichert ist.

Kehrt zurück

Ein FileFormatInfo-Objekt, das die erkannten Informationen enthält.

def detect_file_format(self, file_path):
    ...
ParameterTypBeschreibung
file_pathstrDer Dateipfad.

detect_file_format(stream, password)

Erkennt und gibt die Informationen über ein Excel-Format zurück, das in einem Stream gespeichert ist.

Kehrt zurück

Ein FileFormatInfo-Objekt, das die erkannten Informationen enthält.

def detect_file_format(self, stream, password):
    ...
ParameterTypBeschreibung
streamio.RawIOBase
passwordstrDas Passwort für verschlüsselte Ooxml-Dateien.

detect_file_format(file_path, password)

Erkennt und gibt die Informationen über ein Excel-Format zurück, das in einer Datei gespeichert ist.

Kehrt zurück

Ein FileFormatInfo-Objekt, das die erkannten Informationen enthält.

def detect_file_format(self, file_path, password):
    ...
ParameterTypBeschreibung
file_pathstrDer Dateipfad.
passwordstrDas Passwort für verschlüsselte Ooxml-Dateien.

Siehe auch