Files
workavia-mail-front/core/lib/utils/file_utils.dart
T
dab246 e17c4a87f6 Fix build test failed
(cherry picked from commit 5050b35030530c2d92b58580266e69398db7d909)
2023-06-15 16:43:58 +07:00

112 lines
2.9 KiB
Dart

import 'dart:io';
import 'package:core/domain/exceptions/download_file_exception.dart';
import 'package:core/utils/app_logger.dart';
import 'package:core/utils/platform_info.dart';
import 'package:path_provider/path_provider.dart';
class FileUtils {
Future<String> _getInternalStorageDirPath({
required String nameFile,
String? folderPath,
String? extensionFile
}) async {
if (!PlatformInfo.isWeb) {
String fileDirectory = (await getApplicationDocumentsDirectory()).absolute.path;
if (folderPath != null) {
fileDirectory = '$fileDirectory/$folderPath';
}
Directory directory = Directory(fileDirectory);
if (!await directory.exists()) {
await directory.create(recursive: true);
}
fileDirectory = '$fileDirectory/$nameFile';
if (extensionFile != null) {
fileDirectory = '$fileDirectory.$extensionFile';
}
return fileDirectory;
} else {
throw DeviceNotSupportedException();
}
}
Future<File> saveToFile({
required String nameFile,
required String content,
String? folderPath,
String? extensionFile
}) async {
final internalStorageDirPath = await _getInternalStorageDirPath(
nameFile: nameFile,
folderPath: folderPath,
extensionFile: extensionFile
);
final file = File(internalStorageDirPath);
log("FileUtils()::saveToFile: $file");
return await file.writeAsString(content, mode: FileMode.append);
}
Future<void> deleteFile(String filePath) async {
final file = File(filePath);
if (await file.exists()) {
await file.delete();
log("FileUtils()::deleteFile: $file");
} else {
log("FileUtils()::deleteFile: File does not exist");
}
}
Future<String> getContentFromFile({
required String nameFile,
String? folderPath,
String? extensionFile
}) async {
final internalStorageDirPath = await _getInternalStorageDirPath(
nameFile: nameFile,
folderPath: folderPath,
extensionFile: extensionFile
);
final file = File(internalStorageDirPath);
final emailContent = await file.readAsString();
log("FileUtils()::getFromFile: $emailContent");
return emailContent;
}
Future<bool> isFileExisted({
required String nameFile,
String? folderPath,
String? extensionFile
}) async {
final internalStorageDirPath = await _getInternalStorageDirPath(
nameFile: nameFile,
folderPath: folderPath,
extensionFile: extensionFile
);
return File(internalStorageDirPath).exists();
}
void removeFolder(String folderName) async {
try {
String folderPath = (await getApplicationDocumentsDirectory()).absolute.path;
folderPath = '$folderPath/$folderName';
log('FileUtils::removeFolder():folderPath: $folderPath');
final dir = Directory(folderPath);
dir.deleteSync(recursive: true);
} catch (e) {
logError('FileUtils::removeFolder():EXCEPTION: $e');
}
}
}