Skip to content

Commit 324e4a5

Browse files
committed
FileWriter:Add output write
1 parent 089c0e8 commit 324e4a5

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

src/FileWriter.py

+19-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,19 @@
1-
#empty
1+
#coding = utf-8
2+
import random
3+
def WriteResult(Path,mode,result=False,File=" "):
4+
if mode == 0:
5+
vf = int(random.randint(0,1000))
6+
FileName = "PasswordResult-"
7+
PathResult = f"{Path}{FileName}{vf}"
8+
open(PathResult,"w")
9+
return PathResult
10+
elif mode == 1:
11+
PathResult = f"{Path}{File}"
12+
with open(PathResult,"a") as outFile:
13+
if result == False:
14+
return 0
15+
else:
16+
outFile.write(result)
17+
return 1
18+
19+

src/config.json src/config.conf

File renamed without changes.

0 commit comments

Comments
 (0)