如何隐藏所有排除文件类型

问题描述 投票:0回答:1

我试图隐藏除.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)

由于每个exe的大尺寸,我不能使用-onefile

python file operating-system hide glob
1个回答
0
投票

也许尝试使用glob分离,然后隐藏。

import glob

files_extensions = ('.exe')

def globby():
    for file in files_extensions:
        _globby = (glob.glob('C:\\Users\\TestingAZ1' + file, recursive=False))
        print(_globby)

globby()
© www.soinside.com 2019 - 2024. All rights reserved.