boop
This commit is contained in:
parent
7387b2c777
commit
a05acef7a6
@ -3,6 +3,7 @@ using Microsoft.WindowsAPICodePack.Dialogs;
|
|||||||
using WinRT;
|
using WinRT;
|
||||||
using Cupola;
|
using Cupola;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
using System;
|
||||||
|
|
||||||
namespace Tranquility
|
namespace Tranquility
|
||||||
{
|
{
|
||||||
@ -23,6 +24,16 @@ namespace Tranquility
|
|||||||
string file = OpenFolder();
|
string file = OpenFolder();
|
||||||
|
|
||||||
files = Directory.GetFiles(file);
|
files = Directory.GetFiles(file);
|
||||||
|
|
||||||
|
string iFilesT = "";
|
||||||
|
|
||||||
|
foreach (string iFile in files)
|
||||||
|
{
|
||||||
|
iFilesT += iFile + Environment.NewLine;
|
||||||
|
}
|
||||||
|
|
||||||
|
Input_Folder.Text = file;
|
||||||
|
Input_Files.Text = iFilesT;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static string? OpenFolder()
|
private static string? OpenFolder()
|
||||||
|
Loading…
Reference in New Issue
Block a user