Skip to content

Commit

Permalink
Added file mover and compartmentalised helper apps
Browse files Browse the repository at this point in the history
  • Loading branch information
Cale-Torino committed Mar 27, 2022
1 parent a42f1d9 commit 3a6be57
Show file tree
Hide file tree
Showing 20 changed files with 234 additions and 0 deletions.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.1.32319.34
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MoveFTSMFilestToGitHubReleaseFolder", "MoveFTSMFilestToGitHubReleaseFolder\MoveFTSMFilestToGitHubReleaseFolder.csproj", "{C42CBE8B-09E3-45B4-9C49-5A11F793340B}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C42CBE8B-09E3-45B4-9C49-5A11F793340B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C42CBE8B-09E3-45B4-9C49-5A11F793340B}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C42CBE8B-09E3-45B4-9C49-5A11F793340B}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C42CBE8B-09E3-45B4-9C49-5A11F793340B}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {246C34FA-9DDD-46C6-9222-F7AC4A7C5FED}
EndGlobalSection
EndGlobal
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8" />
</startup>
</configuration>
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MoveFTSMFilestToGitHubReleaseFolder
{
public static class MoveClass
{
public static void CreateFolders()
{
Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Installer\WinForms\");
Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Installer\WPF\");
Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Portable\WinForms\");
Directory.CreateDirectory(AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Portable\WPF\");
}
public static void GetWinWPFFiles()
{
string path = AppDomain.CurrentDomain.BaseDirectory + @"WPF\FreeTAKServer_Manager_WPF\bin\Release\";
string copyto = AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Portable\WPF\";
string[] filez = Directory.GetFiles(path);
foreach (string file in filez)
{
File.Copy(file, $"{copyto}{Path.GetFileName(file)}", true);
FileInfo fi = new FileInfo(file);
Console.WriteLine($"Copied {Path.GetFileName(file)} | {fi.Length / 1024} kb {fi.Length} bytes");
}
}
public static void GetWinFormsFiles()
{
string path = AppDomain.CurrentDomain.BaseDirectory + @"WinForms\FreeTAKServer_Manager\bin\Release\";
string copyto = AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Portable\WinForms\";
string[] filez = Directory.GetFiles(path);
foreach (string file in filez)
{
File.Copy(file, $"{copyto}{Path.GetFileName(file)}", true);
FileInfo fi = new FileInfo(file);
Console.WriteLine($"Copied {Path.GetFileName(file)} | {fi.Length / 1024} kb {fi.Length} bytes");
}
if (File.Exists($"{copyto}FreeTAKServer_Manager.pdb"))
{
File.Delete($"{copyto}FreeTAKServer_Manager.pdb");
}
}
public static void GetWinWPFInstallers()
{
string path = AppDomain.CurrentDomain.BaseDirectory + @"WPF\FreeTAKServer_Manager_WPF_Installer\Release\";
string copyto = AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Installer\WinForms\";
string[] filez = Directory.GetFiles(path);
foreach (string file in filez)
{
File.Copy(file, $"{copyto}{Path.GetFileName(file)}", true);
FileInfo fi = new FileInfo(file);
Console.WriteLine($"Copied {Path.GetFileName(file)} | {fi.Length / 1024} kb {fi.Length} bytes");
}
if (File.Exists($"{copyto}setup.exe"))
{
File.Delete($"{copyto}setup.exe");
}
}
public static void GetWinFormsInstaller()
{
string path = AppDomain.CurrentDomain.BaseDirectory + @"WinForms\FreeTAKServer_Manager_Installer\Release\";
string copyto = AppDomain.CurrentDomain.BaseDirectory + @"FreeTAKServer_Manager_Version_1.0.0.X\Installer\WinForms\";
string[] filez = Directory.GetFiles(path);
foreach (string file in filez)
{
File.Copy(file, $"{copyto}{Path.GetFileName(file)}", true);
FileInfo fi = new FileInfo(file);
Console.WriteLine($"Copied {Path.GetFileName(file)} | {fi.Length / 1024} kb {fi.Length} bytes");
}
if (File.Exists($"{copyto}setup.exe"))
{
File.Delete($"{copyto}setup.exe");
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{C42CBE8B-09E3-45B4-9C49-5A11F793340B}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>MoveFTSMFilestToGitHubReleaseFolder</RootNamespace>
<AssemblyName>MoveFTSMFilestToGitHubReleaseFolder</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="MoveClass.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MoveFTSMFilestToGitHubReleaseFolder
{
internal class Program
{
static void Main(string[] args)
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine(AppDomain.CurrentDomain.BaseDirectory);
Console.WriteLine(AppDomain.CurrentDomain.FriendlyName);
Console.WriteLine("----------------------------------------------");
Callmethods();
Console.WriteLine("Copy Files Complete");
Console.Beep();
Console.ReadKey();
}

public static void Callmethods()
{
MoveClass.CreateFolders();
MoveClass.GetWinFormsFiles();
MoveClass.GetWinWPFFiles();
MoveClass.GetWinFormsInstaller();
MoveClass.GetWinWPFInstallers();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("MoveFTSMFilestToGitHubReleaseFolder")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("MoveFTSMFilestToGitHubReleaseFolder")]
[assembly: AssemblyCopyright("Copyright © 2022")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("c42cbe8b-09e3-45b4-9c49-5a11f793340b")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("1.0.0")]
Binary file added MoveFTSMFilestToGitHubReleaseFolder.exe
Binary file not shown.
Binary file modified WPF/.vs/FreeTAKServer_Manager_WPF/v16/.suo
Binary file not shown.
Binary file not shown.
Binary file modified WinForms/.vs/FreeTAKServer_Manager/v16/.suo
Binary file not shown.
Binary file not shown.

0 comments on commit 3a6be57

Please sign in to comment.