mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-12 13:44:34 +00:00
44 lines
1.4 KiB
C#
44 lines
1.4 KiB
C#
using System;
|
|
using System.IO;
|
|
using System.Reflection;
|
|
|
|
namespace ElectronNET.CLI
|
|
{
|
|
public static class EmbeddedFileHelper
|
|
{
|
|
private const string ResourcePath = "ElectronNET.CLI.{0}";
|
|
|
|
private static Stream GetTestResourceFileStream(string folderAndFileInProjectPath)
|
|
{
|
|
var asm = Assembly.GetExecutingAssembly();
|
|
var resource = string.Format(ResourcePath, folderAndFileInProjectPath);
|
|
|
|
return asm.GetManifestResourceStream(resource);
|
|
}
|
|
|
|
private static string GetTestResourceFileContent(string folderAndFileInProjectPath)
|
|
{
|
|
var asm = Assembly.GetExecutingAssembly();
|
|
var resource = string.Format(ResourcePath, folderAndFileInProjectPath);
|
|
|
|
using (var stream = asm.GetManifestResourceStream(resource))
|
|
{
|
|
if (stream != null)
|
|
{
|
|
var reader = new StreamReader(stream);
|
|
return reader.ReadToEnd();
|
|
}
|
|
}
|
|
return String.Empty;
|
|
}
|
|
|
|
public static void DeployEmbeddedFile(string targetPath, string file)
|
|
{
|
|
using (var fileStream = File.Create(Path.Combine(targetPath, file)))
|
|
{
|
|
var streamFromEmbeddedFile = GetTestResourceFileStream("ElectronHost." + file);
|
|
streamFromEmbeddedFile.CopyTo(fileStream);
|
|
}
|
|
}
|
|
}
|
|
} |