forked from tomohulk/WinSCP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinSCP.format.ps1xml
More file actions
61 lines (61 loc) · 2.25 KB
/
WinSCP.format.ps1xml
File metadata and controls
61 lines (61 loc) · 2.25 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0" encoding="utf-8" ?>
<Configuration>
<!-- ################ VIEW DEFINITIONS ################ -->
<ViewDefinitions>
<View>
<Name>DefaultView</Name>
<ViewSelectedBy>
<TypeName>WinSCP.RemoteFileInfo</TypeName>
</ViewSelectedBy>
<GroupBy>
<Label>Directory</Label>
<ScriptBlock>
$_.Name.SubString(0, $_.Name.LastIndexOf('/') + 1)
</ScriptBlock>
</GroupBy>
<TableControl>
<TableHeaders>
<TableColumnHeader>
<Label>FileType</Label>
<Width>8</Width>
<Alignment>left</Alignment>
</TableColumnHeader>
<TableColumnHeader>
<Label>LastWriteTime</Label>
<Width>25</Width>
<Alignment>right</Alignment>
</TableColumnHeader>
<TableColumnHeader>
<Label>Length</Label>
<Width>10</Width>
<Alignment>right</Alignment>
</TableColumnHeader>
<TableColumnHeader>
<Label>Name</Label>
</TableColumnHeader>
</TableHeaders>
<TableRowEntries>
<TableRowEntry>
<Wrap/>
<TableColumnItems>
<TableColumnItem>
<PropertyName>FileType</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>LastWriteTime</PropertyName>
</TableColumnItem>
<TableColumnItem>
<PropertyName>Length</PropertyName>
</TableColumnItem>
<TableColumnItem>
<ScriptBlock>
$_.Name.SubString($_.Name.LastIndexOf('/') + 1)
</ScriptBlock>
</TableColumnItem>
</TableColumnItems>
</TableRowEntry>
</TableRowEntries>
</TableControl>
</View>
</ViewDefinitions>
</Configuration>