forked from v.moiseev/distributed-computing
2 лаб
This commit is contained in:
@@ -1,2 +1,22 @@
|
||||
// See https://aka.ms/new-console-template for more information
|
||||
Console.WriteLine("Hello, World!");
|
||||
using System.Text;
|
||||
|
||||
string[] files = Directory.GetFiles("/var/data");
|
||||
string maxFilePath = "";
|
||||
long maxL = 0;
|
||||
foreach(var filePath in files){
|
||||
FileInfo fileInfo = new FileInfo(filePath);
|
||||
if(fileInfo.Length > maxL){
|
||||
maxL = fileInfo.Length;
|
||||
maxFilePath = filePath;
|
||||
}
|
||||
}
|
||||
using (FileStream fstream = File.OpenRead(maxFilePath)){
|
||||
byte[] buffer = new byte[fstream.Length];
|
||||
await fstream.ReadAsync(buffer, 0, buffer.Length);
|
||||
string text = Encoding.Default.GetString(buffer);
|
||||
using(FileStream fstream1 = new FileStream("/var/result/data.txt", FileMode.OpenOrCreate)){
|
||||
fstream1.SetLength(0);
|
||||
byte[] buffer1 = Encoding.Default.GetBytes(text);
|
||||
await fstream1.WriteAsync(buffer1, 0, buffer1.Length);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user