1 Star 0 Fork 0

kong-ling/configs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
goto.py 485 Bytes
一键复制 编辑 原始数据 按行查看 历史
kong-ling 提交于 2020-01-17 15:53 . add goto and cscope file
import os
import sys
folders = []
print('Current dir:%s' % os.getcwd())
for root, dirs, files in os.walk(os.getcwd()):
for dir in dirs:
full_path = os.path.join(root, dir)
if full_path not in folders:
folders.append(full_path)
#print(full_path)
for i in range(len(folders)):
print('%5d: %s' % (i, folders[i]))
#target_folder = int(raw_input('Select the target folder index:'))
#print(target_folder)
#os.chdir(folders[target_folder])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kong-ling/configs.git
git@gitee.com:kong-ling/configs.git
kong-ling
configs
configs
master

搜索帮助