1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/filemanager.py

22 lines
480 B
Python
Raw Permalink Normal View History

# -*- coding: utf-8 -*-
2015-10-03 16:34:38 +00:00
2015-11-15 15:58:07 +00:00
def readfile(name):
"""Leggi i contenuti di un file.
:param name: Nome del file
"""
file = open(name, 'r')
content = file.read()
file.close()
return content
def writefile(name, content):
"""Scrivi qualcosa su un file, sovrascrivendo qualsiasi cosa ci sia al suo interno.
:param name: Nome del file
:param content: Contenuto del file
"""
file = open(name, 'w')
file.write(content)
file.close()