forked from TAo4ma/PS_Script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ReadWriteWordTest2.ps1
79 lines (62 loc) · 2.34 KB
/
ReadWriteWordTest2.ps1
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# デフォルト値を変数として定義
$defaultFilePath = "C:\\Users\\y0927\\Documents\\GitHub\\PS_Script\\技100-999.docx"
$defaultPropertyName = "Author"
$defaultPropertyValue = "近藤さん"
# パラメータの定義
$filePath = $defaultFilePath
$propertyName = $defaultPropertyName
$propertyValue = $defaultPropertyValue
$isNewCustomProperty = $false
# 書き込み例
function Write-DocumentProperty {
param (
[string]$filePath,
[string]$propertyName,
[string]$propertyValue,
[switch]$isNewCustomProperty
)
# PCクラスのインスタンスを作成
$pc = New-Object -TypeName PSObject -Property @{
IsLibraryConfigured = $true
}
# Wordクラスのインスタンスを作成
$word = [Word]::new($filePath, $pc)
if ($null -eq $word.Document) {
Write-Error "ドキュメントを開くことができませんでした。ファイルパスを確認してください: $filePath"
return
}
# ドキュメントプロパティを設定
$word.SetDocumentProperty($propertyName, $propertyValue, $isNewCustomProperty)
# ドキュメントを閉じる
$word.Close()
}
# 読み込み例
function Read-DocumentProperties {
param (
[string]$filePath
)
# PCクラスのインスタンスを作成
$pc = New-Object -TypeName PSObject -Property @{
IsLibraryConfigured = $true
}
# Wordクラスのインスタンスを作成
$word = [Word]::new($filePath, $pc)
if ($null -eq $word.Document) {
Write-Error "ドキュメントを開くことができませんでした。ファイルパスを確認してください: $filePath"
return
}
# ドキュメントプロパティを取得
$properties = $word.GetDocumentProperties()
# プロパティを表示
foreach ($key in $properties.Keys) {
Write-Host "$($key): $($properties[$key])"
}
# ドキュメントを閉じる
$word.Close()
}
# Word_Class.ps1を読み込む
. "C:\Users\y0927\Documents\GitHub\PS_Script\MyLibrary\Word_Class.ps1"
# ドキュメントプロパティの書き込み
Write-DocumentProperty -filePath $filePath -propertyName $propertyName -propertyValue $propertyValue -isNewCustomProperty:$isNewCustomProperty
# ドキュメントプロパティの読み込み
Read-DocumentProperties -filePath $filePath