你好即時通訊在我的意見搜索.opt.php文件編譯。python獲取文件的文件夾位置和文件與全球
目前即時通訊做這樣的事情
for x in glob.glob(PATH_VIEWS + '*.opt.php'):
# Get file names
segment1 = x.split('/')
filename = segment1[-1]
realname = filename.split('.opt.php')
appfolder = segment1[-4]
folder = segment1[-2]
''' ../../../views/users/index.opt.php
['..', '..', '..', 'views', 'users', 'index.opt.php']
index.opt.php
['index', '']
'''
有沒有更好的方式來做到這一點?我想獲得
文件名一樣index.opt.php
並且該文件是在這個例子中../../../views/users
用戶
什麼是PATH_VIEWS?是不是你正在尋找的目錄名稱? – eumiro
在這種情況下它是一個變量../../../views/我在尋找的是../../../views/[*]/filename在廣場上的一個。 –
yup im尋找目錄名稱。在這cae它的用戶。 –