我正在使用 python 制作一个简单的程序,它从用户那里获取两个输入:- 文件名,它是用户想要搜索的文件的名称。pathname 是用户想要搜索文件的路径。我在我的代码中使用 os 模块。但是,我希望我的程序不应该在快捷方式中搜索文件。那么,有没有办法可以检查文件夹是否是快捷方式?我在下面发布了我的函数的定义:
def searchwithex(path, filen):
global globalFileVal
global globalFileList
global count
dirCounter = checkdir(path) # checks whether the path is accesible or not.
if dirCounter == True:
topList = listdir(path)
for items in topList:
count += 1
if filen == items:
globalFileVal = path +'/' + items
globalFileList.append(globalFileVal)
items = path + '/' + items
if os.path.isdir(items): # checks whether the given element is a #file or a directory.
counter = searchwithex(items, filen)