开发环境从旧虚拟机 (DESKTOP-KGB0K5G) 迁移到新机器 (DESKTOP-D676QDA), 项目目录从 C:\NeoZQYY 变更为 C:\Project\NeoZQYY, 批量替换 126 个文件中的绝对路径引用。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
320 B
Python
9 lines
320 B
Python
path = 'c:/Project/NeoZQYY/docs/h5_ui/compare/ORCHESTRATION-PLAN.md'
|
|
with open(path, 'rb') as f:
|
|
raw = f.read()
|
|
doc = raw.decode('utf-8').replace('\r\n', '\n')
|
|
# find the third > line and print its full content
|
|
lines = doc.split('\n')
|
|
for i, line in enumerate(lines[:8]):
|
|
print(i, line.encode('unicode_escape'))
|