mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Extract out IO namespace, Part 3
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
using System.IO;
|
||||
|
||||
using SabreTools.Help;
|
||||
using SabreTools.Library.IO;
|
||||
using Microsoft.Data.Sqlite;
|
||||
|
||||
namespace RombaSharp.Features
|
||||
@@ -29,7 +28,7 @@ namespace RombaSharp.Features
|
||||
|
||||
SqliteConnection dbc = new SqliteConnection(_connectionString);
|
||||
dbc.Open();
|
||||
StreamWriter sw = new StreamWriter(FileExtensions.TryCreate("export.csv"));
|
||||
StreamWriter sw = new StreamWriter(File.Create("export.csv"));
|
||||
|
||||
// First take care of all file hashes
|
||||
sw.WriteLine("CRC,MD5,SHA-1"); // ,Depot
|
||||
|
||||
Reference in New Issue
Block a user