我正在尝试隐藏除.exe之外的所有文件。
隐藏:files,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)
由于每个exe的大小,我不能使用-onefile。
答案 0 :(得分:5)
你几乎得到了它;)
import os
import ctypes
folder = 'C:\\Users\\TestingAZ1'
for item_name in os.listdir(folder):
item_path = os.path.join(folder, item_name)
try:
if os.path.isfile(item_path) and not item_name.lower().endswith('.exe'):
ctypes.windll.kernel32.SetFileAttributesW(item_path, 2)
elif os.path.isdir(item_path) and item_name not in ['.', '..']:
ctypes.windll.kernel32.SetFileAttributesW(item_path, 2)
except Exception as e:
print(e)
查看SetFileAttributesW
的文档,它也可以用于文件夹。留下一些"过滤"。如果你的项目是一个文件,你不想隐藏它,如果它结束于" .exe"或" .EXE"。如果它是一个文件夹,如果它是您所在的文件夹或其父文件夹,则不想隐藏它。