20 lines
540 B
Python
20 lines
540 B
Python
def read_file(file_path):
|
|
with open(file_path, 'r') as file:
|
|
return file.read()
|
|
|
|
def write_file(file_path, content):
|
|
with open(file_path, 'w') as file:
|
|
file.write(content)
|
|
|
|
def file_exists(file_path):
|
|
import os
|
|
return os.path.isfile(file_path)
|
|
|
|
def delete_file(file_path):
|
|
import os
|
|
if file_exists(file_path):
|
|
os.remove(file_path)
|
|
|
|
def list_files_in_directory(directory_path):
|
|
import os
|
|
return [f for f in os.listdir(directory_path) if os.path.isfile(os.path.join(directory_path, f))] |