資源簡介
bower_components,bower下載的資源文件模塊。bower_components,bower下載的資源文件模塊。
代碼片段和文件信息
import?os
import?argparse
import?re
parser?=?argparse.ArgumentParser()
parser.add_argument(‘index‘?type=int)
args?=?parser.parse_args()
insert_index?=?args.index
filenames?=?os.listdir(‘.‘)
file_tuples?=?[]
re_file?=?re.compile(r‘^(\d\d)_(.*)$‘)
for?filename?in?filenames:
????m?=?re_file.match(filename)
????if?m:
????????i?=?int(m.groups()[0])
????????t?=?i?filename
????????file_tuples.append(t)
file_tuples?=?sorted(file_tuples?key=lambda?t:?t[0])
for?i?t?in?enumerate(file_tuples):
????if?i?+?1?!=?t[0]:
????????raise?Exception(‘Expected?index?%s?for?%s‘?%?(i?t[1]))
for?i?in?range(insert_index?-?1?len(file_tuples)):
????old_filename?=?file_tuples[i][1]
????m?=?re_file.match(old_filename)
????filepart?=?m.groups()[1]
????new_filename?=?‘%02d_%s‘?%?(i?+?2?filepart)
????print?‘rename?%s?to?%s‘?%?(old_filename?new_filename)
????os.rename(old_filename?new_filename)
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-12-06?23:00??bower_components\
?????目錄???????????0??2017-12-06?23:00??bower_components\angular\
?????文件?????????430??2017-12-06?23:00??bower_components\angular\.bower.json
?????文件?????????343??2017-12-06?23:00??bower_components\angular\angular-csp.css
?????文件?????1070726??2017-12-06?23:00??bower_components\angular\angular.js
?????文件??????148199??2017-12-06?23:00??bower_components\angular\angular.min.js
?????文件???????53281??2017-12-06?23:00??bower_components\angular\angular.min.js.gzip
?????文件??????399648??2017-12-06?23:00??bower_components\angular\angular.min.js.map
?????文件?????????113??2017-12-06?23:00??bower_components\angular\bower.json
?????文件??????????48??2017-12-06?23:00??bower_components\angular\index.js
?????文件?????????572??2017-12-06?23:00??bower_components\angular\package.json
?????文件????????1885??2017-12-06?23:00??bower_components\angular\README.md
?????目錄???????????0??2017-12-06?23:00??bower_components\angular-animate\
?????文件?????????496??2017-12-06?23:00??bower_components\angular-animate\.bower.json
?????文件??????141532??2017-12-06?23:00??bower_components\angular-animate\angular-animate.js
?????文件???????25600??2017-12-06?23:00??bower_components\angular-animate\angular-animate.min.js
?????文件???????69733??2017-12-06?23:00??bower_components\angular-animate\angular-animate.min.js.map
?????文件?????????152??2017-12-06?23:00??bower_components\angular-animate\bower.json
?????文件??????????60??2017-12-06?23:00??bower_components\angular-animate\index.js
?????文件?????????602??2017-12-06?23:00??bower_components\angular-animate\package.json
?????文件????????2045??2017-12-06?23:00??bower_components\angular-animate\README.md
?????目錄???????????0??2017-12-06?23:00??bower_components\angular-aria\
?????文件?????????481??2017-12-06?23:00??bower_components\angular-aria\.bower.json
?????文件???????14593??2017-12-06?23:00??bower_components\angular-aria\angular-aria.js
?????文件????????3774??2017-12-06?23:00??bower_components\angular-aria\angular-aria.min.js
?????文件????????8437??2017-12-06?23:00??bower_components\angular-aria\angular-aria.min.js.map
?????文件?????????146??2017-12-06?23:00??bower_components\angular-aria\bower.json
?????文件??????????54??2017-12-06?23:00??bower_components\angular-aria\index.js
?????文件?????????630??2017-12-06?23:00??bower_components\angular-aria\package.json
?????文件????????2006??2017-12-06?23:00??bower_components\angular-aria\README.md
?????目錄???????????0??2017-12-06?23:00??bower_components\angular-bootstrap\
............此處省略1993個文件信息
評論
共有 條評論