forked from wdssmq/proxy_rsshub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
function_base.py
60 lines (45 loc) · 1.28 KB
/
function_base.py
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
# Functions
import os
def fnEmpty(arg):
return 1
# 什么也不做
def fnLog(msg="", tip=None, type=""):
if not tip is None:
tip = " ← %s" % tip
else:
tip = ""
if isinstance(msg, list):
rlt = ""
for x in msg:
if not any(rlt):
rlt += str(x)
else:
rlt = rlt + "," + str(x)
msg = rlt
if isinstance(msg, int):
msg = str(msg)
if not any(msg):
print("")
else:
print("_%s%s%s" % (type, msg, tip))
# 输出信息
def fnBug(msg, tip=None):
fnLog(msg, tip, "[debug]")
# debug输出
def fnErr(msg, tip=None):
fnLog(msg, tip, "_[err]")
# 错误信息
def fnGetDirsInDir(path):
return [x for x in os.listdir(path) if os.path.isdir(x)]
# 获取子文件夹
def fnGetFilesInDir(path):
return [x for x in os.listdir(path) if not os.path.isdir(x)]
# 获取文件夹中的文件
def fnGetFilesInDir2(path, ext):
return [x for x in os.listdir(path) if not os.path.isdir(x) and os.path.splitext(x)[1] == ext]
# 获取指定后缀的文件
def fnGetFileTime(file):
mtime = os.stat(file).st_mtime # 文件的修改时间
ctime = os.stat(file).st_ctime # 文件的创建时间
return (int(mtime), int(ctime))
# 获取文件时间