1
// =================================
2
// Copyright (c) 2022 Seppo Laakko
3
// Distributed under the MIT license
4
// =================================
5
6
using
System
;
7
using
System.Collections
;
8
using
System.Os
;
9
10
void
ChangeMode
(
int
mode
,
const
List
<
string
>
&
files
)
11
{
12
for
(
const
string
&
file
:
files
)
13
{
14
ChMod
(
file
.
Chars
(
)
,
mode
)
;
15
}
16
}