【发布时间】:2018-05-30 06:43:06
【问题描述】:
我正在尝试隐藏除.exe 之外的所有文件。
隐藏在下面:文件、exe
不隐藏:文件夹
我想要: 隐藏文件夹、文件
不隐藏:.exe
import os, shutil
import ctypes
folder = 'C:\\Users\\TestingAZ1'
for the_file in os.listdir(folder):
file_path = os.path.join(folder, the_file)
try:
if os.path.isfile(file_path):
ctypes.windll.kernel32.SetFileAttributesW(file_path, 2)
except Exception as e:
print(e)
我无法使用-onefile,因为每个 exe 文件都很大。
【问题讨论】:
标签: python file operating-system hide glob