简体   繁体   English

从目录结构构建字典

[英]Building a dictionary from directory structure

I'm trying to build a dictionary that looks like this: 我正在尝试建立一个像这样的字典:

nodes = {
    'var': {
        'type': 'd',
        'full_path': '/var'
        'active': True
        'www': {
            'type': 'd',
            'full_path': '/var/www',
            'active': True
            'index.html': {
                'type': 'f',
                'full_path': '/var/www/index.html',
                'active': False
            }
        'log': {
            'type': 'd',
            'full_path': '/var/log',
            'active': False
        }
    }
    'srv': {
        'type': 'd',
        'full_path': '/srv',
        'active': True
    }
}

I need it to be built by two pieces... The first needs to be from the file system where everything is 'active'. 我需要由两部分组成...第一部分需要来自一切都处于“活动”状态的文件系统。 The second needs to come from a listing of full paths of files where everything is inactive. 第二个需要列出所有不活动的文件的完整路径。

So... 所以...

nodes = {}
for f, d, r in os.walk(root_path):
    # append active items to nodes
for f in os.system(command_that_gets_files)
    # append inactive items to nodes; not overwriting active

I'm sure I'm missing details... 我确定我缺少细节...

Here's one way to get the active files. 这是获取活动文件的一种方法。 I found it easier to recurse than to use os.walk() 's iterative data. 我发现递归比使用os.walk()的迭代数据更容易。 You may uncomment the result['stat'] line if you need to preserve more information than file type. 如果您需要保留比文件类型更多的信息,则可以取消注释result['stat']行。

Every file has a dict entry like: 每个文件都有一个字典条目,例如:

filename : { 'active' : True,
             'full_path' = '/path/to/filename',
             'type' : 'f' }

Every directory has a dict entry like: 每个目录都有一个字典条目,例如:

dirname : { 'active' : True,
            'full_path' = '/path/to/dirname',
             'type' : 'd',
             items = { 'itemname' : {...}, ... } }

Here you go: 干得好:

import sys
import os
from stat import *
import pprint

def PathToDict(path):
    st = os.stat(path)
    result = {}
    result['active'] = True
    #result['stat'] = st
    result['full_path'] = path
    if S_ISDIR(st.st_mode):
        result['type'] = 'd'
        result['items'] = {
            name : PathToDict(path+'/'+name)
            for name in os.listdir(path)}
    else:
        result['type'] = 'f'
    return result


pprint.pprint(PathToDict(sys.argv[1]))

Result: 结果:

{'active': True,
 'full_path': '/tmp/x',
 'items': {'var': {'active': True,
                   'full_path': '/tmp/x/var',
                   'items': {'log': {'active': True,
                                     'full_path': '/tmp/x/var/log',
                                     'items': {},
                                     'type': 'd'},
                             'www': {'active': True,
                                     'full_path': '/tmp/x/var/www',
                                     'items': {'index.html': {'active': True,
                                                              'full_path': '/tmp/x/var/www/index.html',
                                                              'type': 'f'}},
                                     'type': 'd'}},
                   'type': 'd'}},
 'type': 'd'}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM