“Python Crear archivo TEMP” Código de respuesta

Crear archivos temporales en Python

import tempfile

# Creates a file and returns a tuple containing both the handle and the path.
handle, path = tempfile.mkstemp()
with open(handle, "w") as f:
    f.write("Hello, World!");
Real Raccoon

Python Crear archivo TEMP

import tempfile
 
with tempfile.TemporaryFile() as fp:
    name = fp.name
    fp.write("Hello World!")  # Write a string using fp.write()
    content = fp.read()  # Read the contents using fp.read()
    print(f"Content of file {name}: {content}")
 
print("File is now deleted")
Cap'n Joseph Burntbeard

Respuestas similares a “Python Crear archivo TEMP”

Preguntas similares a “Python Crear archivo TEMP”

Más respuestas relacionadas con “Python Crear archivo TEMP” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código