forked from jmpessoa/lazandroidmodulewizard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreatefiles.pas
50 lines (36 loc) · 1016 Bytes
/
createfiles.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
unit createfiles;
{$mode objfpc}{$H+}
interface
uses
{$ifdef unix}BaseUnix,{$endif}
Classes,
SysUtils;
// somente exemplo
procedure Create_sh_bat(list: TStringList; path: String; name: String; FileExtension: String; isDeli: Boolean = false);
//Create_sh_bat(auxList, PathToAndroidProject, '', '');
implementation
procedure Create_sh_bat(list: TStringList; path: String; name: String; FileExtension: String; isDeli: Boolean = false);
var
system: String;
pathProject: String;
begin
case FileExtension of
'.bat':
system := 'windows';
'.sh':
system := 'unix';
end;
if isDeli then
begin
pathProject := path + 'utils' + DirectorySeparator + system + DirectorySeparator + name + FileExtension;
end else
begin
pathProject := path + DirectorySeparator + 'utils' + DirectorySeparator
+ system + DirectorySeparator + name + FileExtension;
end;
list.SaveToFile(pathProject);
{$ifdef Unix}
FpChmod(pathProject, &751);
{$endif}
end;
end.