質問編集履歴

1

ソース

2021/01/19 15:00

投稿

MountDown
MountDown

スコア9

test CHANGED
File without changes
test CHANGED
@@ -8,11 +8,69 @@
8
8
 
9
9
  ```ここに言語を入力
10
10
 
11
+ #サーバへ接続
12
+
13
+ conn = SMBConnection(
14
+
15
+ '<ユーザー名>',
16
+
17
+ '<パスワード>',
18
+
19
+ platform.uname().node,
20
+
21
+ '<サーバ名>')
22
+
23
+ conn.connect('<IPアドレス>', 139)
24
+
25
+
26
+
27
+ #ファイルを生成
28
+
29
+
30
+
31
+ ・(パス、ファイル名割愛)
32
+
33
+
34
+
35
+ sender_path = os.path.join(svrpath, file_name)
36
+
37
+ chk_path1 = os.path.join(svrpath_s, file_name_s)
38
+
39
+ chk_path2 = os.path.join(svrpath_f, file_name_f)
40
+
41
+ #print(sender_path)
42
+
43
+ open(sender_path,'w')
44
+
45
+
46
+
11
47
  # clickイベント
12
48
 
13
49
  def btn_click3():
14
50
 
51
+ root = tkinter.Tk()
52
+
53
+ root.title('このウインドウは自動的に閉じます')
54
+
55
+ root.geometry("350x40")
56
+
57
+ #ラベル
58
+
59
+ Static1 = tkinter.Label(text=u'処理完了後に自動的にブラウザが立ち上がります。')
60
+
61
+ Static1.pack()
62
+
63
+ #5秒後にウインドウを閉じる
64
+
65
+ root.after(3000, lambda: root.destroy())
66
+
67
+ root.mainloop()
68
+
69
+
70
+
15
71
  num = 0
72
+
73
+ bool1 = True
16
74
 
17
75
  while( not( os.path.isfile(chk_path1))):
18
76
 
@@ -22,7 +80,7 @@
22
80
 
23
81
  bool1 = True
24
82
 
25
- #print(num)
83
+ print(num)
26
84
 
27
85
  if num < 120 and os.path.isfile(chk_path1):
28
86
 
@@ -48,17 +106,17 @@
48
106
 
49
107
 
50
108
 
51
- if bool1 == True:
109
+ if bool1 == True:
52
110
 
53
- print(bool1)
111
+ print(bool1)
54
112
 
55
- open_edge()
113
+ open_edge()
56
114
 
57
- else:
115
+ else:
58
116
 
59
- print(bool1)
117
+ print(bool1)
60
118
 
61
- sorry_message()
119
+ sorry_message()
62
120
 
63
121
 
64
122
 
@@ -72,10 +130,44 @@
72
130
 
73
131
  def sorry_message():
74
132
 
75
-
133
+ root = tkinter.Tk()
76
134
 
77
-
135
+ root.title('テスト')
78
136
 
137
+ root.geometry("350x40")
138
+
79
-
139
+ #ラベル
140
+
141
+ Static1 = tkinter.Label(text=u'失敗')
142
+
143
+ Static1.pack()
144
+
145
+ #5秒後にウインドウを閉じる
146
+
147
+ root.after(5000, lambda: root.destroy())
148
+
149
+ root.mainloop()
150
+
151
+
152
+
153
+ #ファイルの存在チェック
154
+
155
+ is_file = os.path.isfile(sender_path)
156
+
157
+ if is_file:
158
+
159
+ print(f"{sender_path} is a file.")
160
+
161
+ else:
162
+
163
+ #pass # パスが存在しないかファイルではない
164
+
165
+ print(f"{sender_path2} is a file.")
166
+
167
+
168
+
169
+ print(conn.echo('echo success'))
170
+
171
+ conn.close()
80
172
 
81
173
  ```