1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
# -*- coding: utf-8 -*-
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
#
# Author: Mauro Soria
import os
import os.path
class File:
def __init__(self, *path_components):
self._path = FileUtils.build_path(*path_components)
@property
def path(self):
return self._path
@path.setter
def path(self, value):
raise NotImplementedError
def is_valid(self):
return FileUtils.is_file(self.path)
def exists(self):
return FileUtils.exists(self.path)
def can_read(self):
return FileUtils.can_read(self.path)
def can_write(self):
return FileUtils.can_write(self.path)
def read(self):
return FileUtils.read(self.path)
def get_lines(self):
return FileUtils.get_lines(self.path)
def __enter__(self):
return self
def __exit__(self, type, value, tb):
pass
class FileUtils:
@staticmethod
def build_path(*path_components):
if path_components:
path = os.path.join(*path_components)
else:
path = ""
return path
@staticmethod
def get_abs_path(file_name):
return os.path.abspath(file_name)
@staticmethod
def exists(file_name):
return os.access(file_name, os.F_OK)
@staticmethod
def can_read(file_name):
try:
with open(file_name):
pass
except IOError:
return False
return True
@staticmethod
def can_write(path):
while not FileUtils.is_dir(path):
path = FileUtils.parent(path)
return os.access(path, os.W_OK)
@staticmethod
def read(file_name):
return open(file_name, "r").read()
@staticmethod
def read_dir(directory):
data = {}
for root, _, files in os.walk(directory):
for file in files:
data[file] = FileUtils.read(os.path.join(root, file))
return data
@staticmethod
def get_lines(file_name):
with open(file_name, "r", errors="replace") as fd:
return fd.read().splitlines()
@staticmethod
def is_dir(path):
return os.path.isdir(path)
@staticmethod
def is_file(path):
return os.path.isfile(path)
@staticmethod
def parent(path, depth=1):
for _ in range(depth):
path = os.path.dirname(path)
return path
@staticmethod
def create_dir(directory):
if not FileUtils.exists(directory):
os.makedirs(directory)
@staticmethod
def create_file(file):
open(file, "w").close()
@staticmethod
def write_lines(file_name, lines, overwrite=False):
if isinstance(lines, list):
lines = os.linesep.join(lines)
with open(file_name, "w" if overwrite else "a") as f:
f.writelines(lines)
|