detect_file_format méthode
Contenu
[
Cacher
]detect_file_format(stream)
Détecte et renvoie les informations sur un format d’un fichier Excel stocké dans un flux.
Retour
Un objet FileFormatInfo qui contient les informations détectées.
def detect_file_format(self, stream):
...
Paramètre | Taper | Description |
---|---|---|
stream | io.RawIOBase |
detect_file_format(file_path)
Détecte et renvoie les informations sur un format d’un fichier Excel stocké dans un fichier.
Retour
Un objet FileFormatInfo qui contient les informations détectées.
def detect_file_format(self, file_path):
...
Paramètre | Taper | Description |
---|---|---|
file_path | str | Le chemin du fichier. |
detect_file_format(stream, password)
Détecte et renvoie les informations sur un format d’un fichier Excel stocké dans un flux.
Retour
Un objet FileFormatInfo qui contient les informations détectées.
def detect_file_format(self, stream, password):
...
Paramètre | Taper | Description |
---|---|---|
stream | io.RawIOBase | |
password | str | Le mot de passe pour les fichiers ooxml chiffrés. |
detect_file_format(file_path, password)
Détecte et renvoie les informations sur un format d’un fichier Excel stocké dans un fichier.
Retour
Un objet FileFormatInfo qui contient les informations détectées.
def detect_file_format(self, file_path, password):
...
Paramètre | Taper | Description |
---|---|---|
file_path | str | Le chemin du fichier. |
password | str | Le mot de passe pour les fichiers ooxml chiffrés. |
Voir également
- module aspose.cells
- classe FileFormatInfo
- classe FileFormatUtil