今天用Python提取了Linux内核源代码的目录树结构,没有怎么写过脚本程序,我居然折腾了2个小时,先是如何枚举出给定目录下的所有文件和文件夹,os.walk可以实现列举,但是os.walk是只给出目录名和文件名,而没有绝对路径。使用os.path.listdir可以达到这个目的,然后是创建目录,由于当目录存在是会提示创建失败的错误,所以我先想删除所有目录,然后再创建,但是发现还是有问题,最好还是使用判断如果不存在才创建目录,存在时就不创建,贴下代码:
# @This script can be used to iterate the given directory,and create the # empty directory structure without file in it,e.g,I want to have you directory # as the linux kernel source, but i don't want the files, then this script comes. # @This script is running under python 3.1 # @author:zhangchao # @Time:2011年7月25日18:43:26 ########################################################################### import os import re #listmydirs is created to recursivly list all the entrys in the specified path. #In fact, we have os.walk to handle this problem # #level:目录的层数,不要也可以,主要是为了显示目录在那一层 #srcpath:内核源代码所在的路路径 #destpath:将要生成的内核源代码的目录结构所在路径 # def createkerneldirs(level,srcpath,destpath): for entrys in os.listdir(srcpath): #学习listdir函数的用法 tmpsrcpath=srcpath+os.sep+entrys tmpdestpath = tmpsrcpath.replace(srcpath,destpath)#将源路径中的E:\linux-2.6替换为E:\tmp,学习字符串替换函数的用法 print('in level:'+str(level)) print(tmpsrcpath) print(tmpdestpath) if os.path.isdir(tmpsrcpath): listmydirs(level+1,tmpsrcpath,tmpdestpath) if os.path.exists(tmpdestpath)==False: #如果文件不存在才创建文件 os.makedirs(tmpdestpath) if __name__=='__main__': #将E:\linux-2.6的内核源代码目录结构拷贝到E:\tmp目录下 createkerneldirs(1,r'E:\linux-2.6',r'E:\tmp')
以上就是小编为大家带来的Python提取Linux内核源代码的目录结构实现方法全部内容了,希望大家多多支持小牛知识库~
Electron 的源代码主要依据 Chromium 的拆分约定被拆成了许多部分。 为了更好地理解源代码,您可能需要了解一下 Chromium 的多进程架构 源代码结构 1 Electron 2 ├── atom/ - C ++源代码. 3 | ├── app/ - 系统入口代码 4 | ├── browser/ - 前端包含了主窗口、UI 和其他所有与主进程有关的东西,它会告诉渲染进程如何管理
Electron 的源代码主要依据 Chromium 的拆分约定被拆成了许多部分。 为了更好地理解源代码,您可能需要了解一下 Chromium 的多进程架构。 源代码的结构 Electron ├──atom - Electron 的源代码 | ├── app - 系统入口代码 | ├── browser - 包含了主窗口、UI 和其他所有与主进程有关的东西,它会告诉渲染进程如何管理页面 |
Electron 的源代码主要依据 Chromium 的拆分约定被拆成了许多部分。 为了更好地理解源代码,您可能需要了解一下 Chromium 的多进程架构。 Source Code Directory Structure The source code of Electron is separated into a few parts, mostly following Chromium on
Electron 的源代码主要依据 Chromium 的拆分约定被拆成了许多部分。 为了更好地理解源代码,您可能需要了解一下 Chromium 的多进程架构。 源代码的目录结构 Electron ├── build/ - Build configuration files needed to build with GN. ├── buildflags/ - Determines the set o
本文向大家介绍python ftp 按目录结构上传下载的实现代码,包括了python ftp 按目录结构上传下载的实现代码的使用技巧和注意事项,需要的朋友参考一下 具体代码如下所示: 只完成了按目录结构上传,下载还没弄好。 补充:下面看下Python ftp 上传和下载 工具 python3 ftplib 上传 下载 总结 以上所述是小编给大家介绍的jpython ftp 按目录结构上传下载的实现
为了更好地理解源代码,您可能需要了解一下 。 其他目录的结构 tools - 在 gyp 文件中用到的工具脚本,但与 目录不同, 该目录中的脚本不应该被用户直接调用 vendor - 第三方依赖项的源代码,为了防止人们将它与 Chromium 源码中的同名目录相混淆, 在这里我们不使用 作为目录名 out - 的临时输出目录 dist - 由脚本 创建的临时发布目录